<ST_TblStyleOverrideType>
(Conditional Table Style Formatting Types)
This simple type specifies possible values for the sections of the table to which the current conditional formatting properties shall be applied when this table style is used.
<w:style w:type="table" …> … <w:tblStylePr w:type="lastRow"> … </w:tblStylePr> </w:style>
The <type>
attribute value of lastRow
specifies that this set of conditional formatting properties shall be applied to the last row of the table only. ]
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 table formatting applies to odd numbered groupings of rows. |
|
Specifies that the table formatting applies to odd numbered groupings of columns. |
|
Specifies that the table formatting applies to even numbered groupings of rows. |
|
Specifies that the table formatting applies to even numbered groupings of columns. |
|
Specifies that the table formatting applies to the first column. |
|
Specifies that the table formatting applies to the first row. Any subsequent row which has the |
|
Specifies that the table formatting applies to the last column. |
|
Specifies that the table formatting applies to the last row. |
|
Specifies that the table formatting applies to the top right cell. |
|
Specifies that the table formatting applies to the top left cell. |
|
Specifies that the table formatting applies to the bottom right cell. |
|
Specifies that the table formatting applies to the bottom left cell. |
|
Specifies that the conditional formatting applies to the whole table. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TblStyleOverrideType">
<restriction base="xsd:string">
<enumeration value="wholeTable"/>
<enumeration value="firstRow"/>
<enumeration value="lastRow"/>
<enumeration value="firstCol"/>
<enumeration value="lastCol"/>
<enumeration value="band1Vert"/>
<enumeration value="band2Vert"/>
<enumeration value="band1Horz"/>
<enumeration value="band2Horz"/>
<enumeration value="neCell"/>
<enumeration value="nwCell"/>
<enumeration value="seCell"/>
<enumeration value="swCell"/>
</restriction>
</simpleType>