<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.
<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). ]
Parent Elements |
---|
Root element of WordprocessingML Web Settings part |
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>