[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
webSettings (Web Page Settings)
This element specifies the set of web page settings that have been specified for a single WordprocessingML document. This element is the root element for the Web Settings part within a WordprocessingML document.
[Example: Consider the following WordprocessingML fragment for the web page settings in a WordprocessingML document:
<w:webSettings>
<w:frameset>
…
</w:frameset>
<w:doNotUseLongFileNames w:val="true" />
</w:webSettings>
The webSettings element contains all of the web page settings for this document. In this case, the web page settings specified for this document are: a frameset defined using the frameset element (§2.15.2.18); and a setting specifying that when this file is saved as a web page, all resulting files shall not exceed 8.3 characters in length using the doNotUseLongFileNames element (§2.15.2.13). end example]
Parent Elements |
Root element of WordprocessingML Web Settings part |
Child Elements |
Subclause |
allowPNG (Allow PNG as Graphic Format) |
§2.15.2.1 |
§2.15.2.8 | |
doNotOrganizeInFolder (Do Not Place Supporting Files in Subdirectory) |
§2.15.2.10 |
doNotRelyOnCSS (Do Not Rely on CSS for Font Face Formatting) |
§2.15.2.11 |
doNotSaveAsSingleFile (Recommend Web Page Format over Single File Web Page Format) |
§2.15.2.12 |
doNotUseLongFileNames (Do Not Use File Names Longer than 8.3 Characters) |
§2.15.2.13 |
encoding (Output Encoding When Saving as Web Page) |
§2.15.2.14 |
frameset (Root Frameset Definition) |
§2.15.2.18 |
optimizeForBrowser (Disable Features Not Supported by Target Web Browser) |
§2.15.2.32 |
pixelsPerInch (Pixels per Inch for Graphics/Images) |
§2.15.2.33 |
relyOnVML (Utilize VML When Saving as Web Page) |
§2.15.2.34 |
saveSmartTagsAsXml (Save Smart Tag Data in XML Property Bag) |
§2.15.2.36 |
targetScreenSz (Target Screen Size for Web Page) |
§2.15.2.41 |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_WebSettings">
<sequence>
<element name="frameset" type="CT_Frameset" minOccurs="0"/>
<element name="divs" type="CT_Divs" minOccurs="0"/>
<element name="encoding" type="CT_String" minOccurs="0"/>
<element name="optimizeForBrowser" type="CT_OnOff" minOccurs="0"/>
<element name="relyOnVML" type="CT_OnOff" minOccurs="0"/>
<element name="allowPNG" type="CT_OnOff" minOccurs="0"/>
<element name="doNotRelyOnCSS" type="CT_OnOff" minOccurs="0"/>
<element name="doNotSaveAsSingleFile" type="CT_OnOff" minOccurs="0"/>
<element name="doNotOrganizeInFolder" type="CT_OnOff" minOccurs="0"/>
<element name="doNotUseLongFileNames" type="CT_OnOff" minOccurs="0"/>
<element name="pixelsPerInch" type="CT_DecimalNumber" minOccurs="0"/>
<element name="targetScreenSz" type="CT_TargetScreenSz" minOccurs="0"/>
<element name="saveSmartTagsAsXml" type="CT_OnOff" minOccurs="0"/>
</sequence>
</complexType>