[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_PageBorderDisplay (Page Border Display Options)

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@display2.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>