<checkBox>
(Checkbox Form Field Properties)
This element specifies a set of properties which shall be associated with the parent FORMCHECKBOX
checkbox form field (§2.16.5.26) within the document.
If the parent form field is not a checkbox (i.e. its field code does not have a value of FORMCHECKBOX
), then these properties may be ignored.
<w:ffData> <w:checkBox> <w:size w:val="20" /> <w:checked w:val="true" /> </w:checkBox> </w:ffData>
The <checkBox>
element specifies that it contains a set of properties for the parent checkbox form field. In this case, these properties specify that the size of the checkbox shall be exactly 10 points via the <size>
element (§2.16.30), and that the current state of the checkbox shall be checked via the <checked>
element (§2.16.8). ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_FFCheckBox">
<sequence>
<choice>
<element name="size" type="CT_HpsMeasure"/>
<element name="sizeAuto" type="CT_OnOff"/>
</choice>
<element name="default" type="CT_OnOff" minOccurs="0"/>
<element name="checked" type="CT_OnOff" minOccurs="0"/>
</sequence>
</complexType>