Add missing setters for pageSizeW and pageSizeH
This commit is contained in:
parent
6c3088ea07
commit
4e25283195
@ -282,6 +282,13 @@ class Section extends Border
|
||||
return $this->pageSizeW;
|
||||
}
|
||||
|
||||
public function setPageSizeW($value = null)
|
||||
{
|
||||
$this->pageSizeW = $this->setNumericVal($value, self::DEFAULT_WIDTH);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Page Size Height
|
||||
*
|
||||
@ -292,6 +299,13 @@ class Section extends Border
|
||||
return $this->pageSizeH;
|
||||
}
|
||||
|
||||
public function setPageSizeH($value = null)
|
||||
{
|
||||
$this->pageSizeH = $this->setNumericVal($value, self::DEFAULT_HEIGHT);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Margin Top
|
||||
*
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user