<ST_View> (Document View Values)

This simple type defines the possible views which may be used to determine how WordprocessingML documents may be rendered when displayed by an application.

example:
<w:view w:val="print" /> 

The <view> element's@ val attribute is equal to print specifying that the given WordprocessingML document shall be rendered as it will be printed. ]

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

<masterPages> (Master Document View)

Specifies that a given WordprocessingML document shall be rendered in a view optimized for outlining or creating long documents.

Note:

<none> (Default View)

Specifies that a given WordprocessingML document shall be rendered in the default view of the application.

<normal> (Draft View)

Specifies that a given WordprocessingML document shall be rendered in a view optimized for outlining or creating long documents.

<outline> (Outline View)

Specifies that a given WordprocessingML document shall be rendered in a view optimized for outlining or creating long documents.

<print> (Print Layout View)

Specifies that this document shall be opened in a view that displays the document as it will print.

<web> (Web Page View)

Specifies that a given WordprocessingML document shall be rendered in a view mimicking the way this document would be displayed in a web page.

Referenced By

<view@val>2.15.1.93)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_View">
	<restriction base="xsd:string">
	<enumeration value="none"/>
	<enumeration value="print"/>
	<enumeration value="outline"/>
	<enumeration value="masterPages"/>
	<enumeration value="normal"/>
	<enumeration value="web"/>
	</restriction>
</simpleType>