<revisionView>
(Visibility of Annotation Types)
This element specifies which forms of annotations shall be visible for a WordprocessingML document when it is displayed. This setting shall not affect whether annotations are added or persisted, it shall only affect the display of the annotations which exist in the document's contents (persisted or in memory).
If this element is omitted, then all forms of annotations shall be visible.
<w:revisionView w:markup="false" w:comments="false" w:insDel="false" />
The <revisionView>
element specifies that the visibility of the markup region, comments and content additions/deletions shall be suppressed by setting a value of false
. Since the @formatting
and @inkAnnotation
attributes are omitted, they inherit the default of true
and shall be displayed. ]
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies if comments should be included when the contents of this document are displayed. If this attribute is omitted, then comments shall be displayed when annotations are visible based on application-level settings. <w:revisionView w:comments="true" /> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies if revisions to properties (i.e. formatting revisions) should be included when the contents of this document are displayed. If this attribute is omitted, then formatting revisions shall be displayed when annotations are visible based on application-level settings. <w:revisionView w:formatting="true" /> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies if ink annotations, specified in VML syntax (§6.1), should be included when the contents of this document are displayed. If this attribute is omitted, then ink annotations shall be displayed when annotations are visible based on application-level settings. <w:revisionView w:inkAnnotations="true" /> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies if revisions to content (i.e. insertions, deletions, and moves) should be included when the contents of this document are displayed. If this attribute is omitted, then insertions, deletions, and moves shall be displayed when annotations are visible based on application-level settings. <w:revisionView w:insDel="true" /> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies if the application shall visually indicate any additional non-printing area used to display annotations when the annotations in this document are displayed. If this attribute is omitted, then any additional non-printing area shall be indicated when they are visible based on application-level settings. <w:revisionView w:markup="false" /> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_TrackChangesView">
<attribute name="markup" type="ST_OnOff" use="optional"/>
<attribute name="comments" type="ST_OnOff" use="optional"/>
<attribute name="insDel" type="ST_OnOff" use="optional"/>
<attribute name="formatting" type="ST_OnOff" use="optional"/>
<attribute name="inkAnnotations" type="ST_OnOff" use="optional"/>
</complexType>