<entry>
(Regroup Entry)
This element specifies a single entry in a <regrouptable>
(§6.2.2.22). Each entry is a pair mapping a current @regroupid
value to an old one. This is used to restore regrouping information on the regrouped object. A value of zero indicates no previous group.
example:
<o:regrouptable v:ext="edit"> <o:entry new="1" old="0"/> </o:regrouptable>
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies the ID of the new group. Default is 0. The possible values for this attribute are defined by the XML Schema int datatype. |
|
Specifies the ID of the old group. Default is 0. The possible values for this attribute are defined by the XML Schema int datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Entry">
<attribute name="new" type="xsd:int" use="optional"/>
<attribute name="old" type="xsd:int" use="optional"/>
</complexType>