<bidiVisual>
(Visually Right to Left Table)
This element specifies that the cells with this table shall be visually represented in a right to left direction. This element also affects the application of all table-level properties.
If this element is omitted, then the table shall not be presented right to left.
One |
Two |
Three |
|
This property would be specified in the WordprocessingML as follows:
<w:tblPr> <w:bidiVisual/> </w:tblPr>
Since the <bidiVisual>
element specifies this is a visually right to left table, the actual table data would be stored in its logical order as follows:
<w:tr> <w:tc> <w:p> <w:r> <w:t>One</w:t> </w:r> </w:p> </w:tc> <w:tc> <w:p> <w:r> <w:t>Two</w:t> </w:r> </w:p> </w:tc> <w:tc> <w:p> <w:r> <w:t>Three</w:t> </w:r> </w:p> </w:tc> <w:tc> <w:p/> </w:tc> </w:tr>
The first logical cell with text One
is stored first in the file format, and displayed on the rightmost in this table visually. ]
Attributes |
Description |
---|---|
|
Specifies a binary value for the property defined by the parent XML element. A value of A value of <w:… w:val="off"/> 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_OnOff">
<attribute name="val" type="ST_OnOff"/>
</complexType>