<size> (Checkbox Form Field Size)

This element specifies the exact size for the parent checkbox form field. The resulting field shall be displayed in this point size regardless of the size specified by the formatting of its corresponding content in the document via the style hierarchy.

example:
<w:ffData>
  <w:checkBox>
    <w:size w:val="20" />
    <w:checked w:val="true" />
  </w:checkBox>
</w:ffData>

The <size> element specifies that the checkbox shall be displayed in a ten point font size, regardless of the formatting which would normally be applied to this text via the style hierarchy. ]

Parent Elements

<checkBox>2.16.7)

Attributes

Description

<val> (Half Point Measurement)

Specifies a positive measurement specified in half-points (1/144 of an inch).

The contents of this attribute value are interpreted based on the context of the parent XML element.

<w:rPr>
  <w:sz w:val="28" /> 
</w:rPr>

The value of the @val attribute is the font size of the run's contents.

However, consider the following fragment:

<w:rPr>
  <w:kern w:val="30" />
</w:rPr>

In this case, the value in the @val attribute is the minimum size for which font characters shall be automatically kerned.

In each case, the value is interpreted in the context of the parent element. ]

The possible values for this attribute are defined by the ST_HpsMeasure simple type (§2.18.48).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_HpsMeasure">
	<attribute name="val" type="ST_HpsMeasure" use="required"/>
</complexType>