We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8fbac6 commit 0a8635eCopy full SHA for 0a8635e
src/PhpWord/Style/Section.php
@@ -239,6 +239,13 @@ public function getPageSizeW()
239
return $this->pageSizeW;
240
}
241
242
+ public function setPageSizeW($value = null)
243
+ {
244
+ $this->pageSizeW = $this->setNumericVal($value, self::DEFAULT_WIDTH);
245
+
246
+ return $this;
247
+ }
248
249
/**
250
* Get Page Size Height
251
*
@@ -249,6 +256,13 @@ public function getPageSizeH()
256
return $this->pageSizeH;
257
258
259
+ public function setPageSizeH($value = null)
260
261
+ $this->pageSizeH = $this->setNumericVal($value, self::DEFAULT_HEIGHT);
262
263
264
265
252
266
253
267
* Get Margin Top
254
268
0 commit comments