<ST_Zoom> (Magnification Preset Values)

This simple type specifies the type of magnification settings which may be applied to a given document on open.

example:
<w:zoom w:val="bestFit" w:percent="90" />

The @val attribute is equal to the value bestFit specifying that an application shall dynamically calculate the magnification needed such that the given document shall be visible on the horizontal plane of the document with no horizontal scrolling required to see any part of the WordprocessingML document's pages. ]

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

<bestFit> (Display Page Width)

Specifies that the magnification setting shall be adjusted to ensure the width of the current page matches the available window width.

<fullPage> (Display One Full Page)

Specifies that the magnification setting shall be adjusted to ensure that one full page can be seen at a time.

<none> (No Preset Magnification)

Specifies that no preset magnification is present, and the last known cached setting shall be used.

<textFit> (Display Text Width)

Specifies that the magnification setting shall be adjusted to ensure the width of the text extents on the current page matches the available window width.

Referenced By

<zoom@val>2.15.1.95)

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

<simpleType name="ST_Zoom">
	<restriction base="xsd:string">
	<enumeration value="none"/>
	<enumeration value="fullPage"/>
	<enumeration value="bestFit"/>
	<enumeration value="textFit"/>
	</restriction>
</simpleType>