setPaper() публичный Метод

Set the paper size (default A4)
public setPaper ( string $paper, string $orientation = 'portrait' )
$paper string
$orientation string
Пример #1
0
 /**
  * Set the paper size (default A4)
  *
  * @param string $paper
  * @param string $orientation
  * @return $this 
  * @static 
  */
 public static function setPaper($paper, $orientation = null)
 {
     return \Barryvdh\DomPDF\PDF::setPaper($paper, $orientation);
 }