<divId>
(Associated HTML div ID)
div
element. div
information, so that the document can later be saved back into HTML format and have the stored information replaced, since the HTML div
can store formatting properties on arbitrary regions. In order to determine the associated HTML div
properties, the value of the @val
attribute on this element is used to look up an associated <div>
element (§2.15.2.8) whose @id
attribute matches this value.
If this table row does not have a <divId>
element present, then this table row shall not have any associated HTML div information. If this element is present, but the @val
attribute specifies an @id
value which does not have an associated <div>
element, then this element is ignored.
<html> <body> <div style="…"> <table> <tr> <td>R1C1</td> … </tr> </table> <p> … </p> </div> … </body> </html>
This HTML document specifies a <div>
spanning the table and the first paragraph. If this document is saved into WordprocessingML, then both the rows of the table and the paragraph shall have a <divId>
which points at the same <div>
information in the web settings part:
<w:trPr> … <w:divId w:val="1102603671"/> </w:trPr>
The @val
attribute then points at a <div>
element which stores the associated div
properties:
<w:divs> <w:div w:id="1102603671"> … </w:div> </w:divs>
This specifies that this table's rows are part of a single HTML div
. ]
Attributes |
Description |
---|---|
|
Specifies that the contents of this attribute will contain a decimal number. The contents of this decimal number are interpreted based on the context of the parent XML element. <w:… w:val="1512645511" /> The value of the The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_DecimalNumber">
<attribute name="val" type="ST_DecimalNumber" use="required"/>
</complexType>