<ST_AnnotationVMerge> (Table Cell Vertical Merge Revision Type)

This simple type specifies the possible values for the vertical merge setting which applied to a table cell by a cell merge (or split) revision.

example:
<w:tc>
  <w:tcPr>
    <w:cellMerge  w:vmerge="cont" />
  </w:tcPr></w:tc>

The @vmerge attribute value of cont specifies that the revision on the table cell resulted in it being merged with the previous set of vertically merged cells above it (whether that was one cell or many). ]

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

<cont> (Vertically Merged Cell)

Specifies that the revision resulted in this cell being vertically merged with the cell above it.

<rest> (Vertically Split Cell)

Specifies that the revision resulted in this cell being vertically split from the one above it.

Referenced By

<cellMerge@vMerge>2.13.5.3); <cellMerge@vMergeOrig>2.13.5.3)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_AnnotationVMerge">
	<restriction base="xsd:string">
	<enumeration value="cont"/>
	<enumeration value="rest"/>
	</restriction>
</simpleType>