pageformat
.pageformat side:{PageSide? = null}
pages:{Range? = null}
size:{PageSizeFormat? = null}
orientation:{PageOrientation = context.documentInfo.type.preferredOrientation}
width:{Size? = null}
height:{Size? = null}
margin:{Sizes? = null}
bordertop:{Size? = null}
borderright:{Size? = null}
borderbottom:{Size? = null}
borderleft:{Size? = null}
bordercolor:{Color? = null}
columns:{Int? = null}
alignment:{Container.TextAlignment? = null}
-> VoidSets the page layout format of the document. If a value is unset, the default value supplied by the underlying renderer is used.
In case of
pageddocuments, this function defines the properties of each page.In case of
slidesdocuments, this function defines the properties of each slide.In case of
plaindocuments, this function defines some properties of the whole document, seeing it as just one page. Not all effects of this function are supported in plain documents.
This function can be called multiple times. Each call appends a new format layer, and later layers take priority over earlier ones. When side is specified, the format is scoped only to specific pages of paged documents, enabling distinct formatting per side (e.g. mirrored margins):
.pageformat size:{A4}
.pageformat side:{left} margin:{2cm 3cm 2cm 1cm}
.pageformat side:{right} margin:{2cm 1cm 2cm 3cm}If both size and width or height are set, the latter overrides the former. If both size and width or height are unset, the default value is used.
If any of bordertop, borderright, borderbottom, borderleft or bordercolor is set, the border will be applied around the content area of each page. If only bordercolor is set, the border will be applied with a default width to each side. Border is not supported in plain documents.
Parameters
- Optional
- Likely named
width of each page
- Optional
- Likely named
height of each page
- Optional
- Likely named
blank space around the content of each page. Not supported in slides documents
- Optional
- Likely named
border width of the top content area of each page
- Optional
- Likely named
border width of the right content area of each page
- Optional
- Likely named
border width of the bottom content area of each page
- Optional
- Likely named
border width of the left content area of each page
- Optional
- Likely named
color of the border around the content area of each page
- Optional
- Likely named
positive number of columns on each page. If set and greater than 1, the layout becomes multi-column. If < 1, the value is discarded
Throws
if pages is open-ended (has no finite end)