DocumentID: ECMA-376/Part4/2.18.68 Title: ECMA-376, Part4: 2.18.68 ST_PageBorderDisplay (Page Border Display Options) Extracted-From: ECMA-376 Office Open XML File Formats, 1st Edition / December 2006 Warning: Coverted to HTML format by a script known to have bugs
This simple type specifies the pages in the parent section on which the page border shall be printed.
[Example: Consider a section in a document for which the page border shall only be printed on the first page. This setting is specified using the following WordprocessingML:
<w:pgBorders w:display="firstPage">
...
</w:pgBorders>
The display attribute with a value of firstPage specifies that only the first page shall display the page border defined for this section. end example]
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
|
Enumeration Value |
Description |
|---|---|
|
allPages (Display Page Border on All Pages) |
Specifies that the page border shall be displayed on all pages in the parent section. |
|
firstPage (Display Page Border on First Page) |
Specifies that the page border shall be displayed on only the first page in the parent section. |
|
notFirstPage (Display Page Border on All Pages Except First) |
Specifies that the page border shall be displayed on only the first page in the parent section. |
|
Referenced By |
|
pgBorders@display (§2.6.10) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_PageBorderDisplay">
<restriction base="xsd:string">
<enumeration value="allPages"/>
<enumeration value="firstPage"/>
<enumeration value="notFirstPage"/>
</restriction>
</simpleType>