<ST_DocProtect>
(Document Protection Types)
This simple type specifies the possible set of editing restrictions which may be enforced on a given WordprocessingML document.
<w:documentProtection w:edit="readOnly" w:enforcement="1" />
The <edit>
attribute has a value of readOnly
and an @enforcement
attribute with a value of 1
, specifying that read-only document protection shall be enforced on the given document. e]
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 |
---|---|
|
Specifies that the edits made to this document shall be restricted to:
|
|
Specifies that the edits made to this document shall be restricted to:
|
|
Specifies that no editing restrictions have been applied to the document. |
|
Specifies that the edits made to this document shall be restricted to:
|
|
Specifies that the edits made to this document shall be tracked as revisions. This value shall imply the presence of the |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_DocProtect">
<restriction base="xsd:string">
<enumeration value="none"/>
<enumeration value="readOnly"/>
<enumeration value="comments"/>
<enumeration value="trackedChanges"/>
<enumeration value="forms"/>
</restriction>
</simpleType>