<activeWritingStyle>
(Grammar Checking Settings)
<proofState>
element (§<w:activeWritingStyle w:lang="en-CA" w:vendorID="64" w:dllVersion="131078" w:nlCheck="1" w:optionSet="0" />
The <activeWritingStyle>
element's @lang
attribute specifies that the English (Canada) language setting for grammatical and stylistic checks shall be applied; the @vendorID
attribute specifies information about the vendor associated with the DLL used to perform the grammatical and stylistic checks; the @dllVersion
attribute specifies the version of this DLL; the @nlCheck
attribute specifies if natural language checks were performed or not; and the @optionSet
element specifies that the hosting application should allow its grammar engine to check both the grammar and style of the given WordprocessingML document, if that functionality is available. ]
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies the name of the application which specified the grammatical settings contained on the attributes for this element. If an application reads these settings and does not understand the value of this attribute, then its settings may be ignored and the application's default settings used instead. <w:activeWritingStyle … w:appName="testApp"/> The The possible values for this attribute are defined by the ST_String simple type (§2.18.89). |
|
Specifies if the grammar content checking performed on this document included stylistic rules for the document content. If specified, applications which support this functionality shall check stylistic rules as well as grammatical ones when checking the grammatical content of this document. <w:activeWritingStyle … w:checkStyle="false"/> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies the version of the engine that was used to check the grammatical content of the WordprocessingML document. <w:activeWritingStyle … w:dllVersion="131078" /> The The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
|
Specifies the language of the engine used to perform the grammatical content checking. <w:activeWritingStyle w:lang="en-CA" …/> The The possible values for this attribute are defined by the ST_Lang simple type (§2.18.51). |
|
Specifies whether the engine that was used to check the grammatical content of the WordprocessingML document performed natural language-based analysis. <w:activeWritingStyle … w:nlCheck="1" /> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies a value indicating a unique ID for the writing style engine that was used to check the grammatical content of the WordprocessingML document. <w:activeWritingStyle … w:vendorID="64"/> The The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_WritingStyle">
<attribute name="lang" type="ST_Lang" use="required"/>
<attribute name="vendorID" type="ST_DecimalNumber" use="required"/>
<attribute name="dllVersion" type="ST_DecimalNumber" use="required"/>
<attribute name="nlCheck" type="ST_OnOff" use="optional"/>
<attribute name="checkStyle" type="ST_OnOff" use="required"/>
<attribute name="appName" type="ST_String" use="required"/>
</complexType>