2.7.15 ST_Checked

Target namespace: http://schemas.microsoft.com/office/spreadsheetml/2009/9/main

Referenced by: CT_FormControlPr

A simple type that specifies if a check box is selected or if the radio button is selected.

Value

Meaning

Unchecked

Object is unchecked or unselected.

Checked

Object is checked or selected.

Mixed

Mixed selection. Applies only to check boxes. The application can determine whether to consider this option as a check box that is not initialized and it is neither selected nor cleared.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xsd:simpleType name="ST_Checked">
   <xsd:restriction base="xsd:token">
     <xsd:enumeration value="Unchecked"/>
     <xsd:enumeration value="Checked"/>
     <xsd:enumeration value="Mixed"/>
   </xsd:restriction>
 </xsd:simpleType>

See section 5.4 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).