2.7.14 ST_ObjectType

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

Referenced by: CT_FormControlPr

A simple type that specifies the types of form control objects. The possible values are included in the following table.

Value

Meaning

Button

Button control

CheckBox

Check-box control

Drop

Drop-down (combo box) control

GBox

Group box control; this control is used for grouping radio button form controls

Label

Label control

List

List box control

Radio

Radio button control

Scroll

Scroll bar control

Spin

Spin box control

EditBox

Edit box control

Dialog

Dialog control

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

 <xsd:simpleType name="ST_ObjectType">
   <xsd:restriction base="xsd:token">
     <xsd:enumeration value="Button"/>
     <xsd:enumeration value="CheckBox"/>
     <xsd:enumeration value="Drop"/>
     <xsd:enumeration value="GBox"/>
     <xsd:enumeration value="Label"/>
     <xsd:enumeration value="List"/>
     <xsd:enumeration value="Radio"/>
     <xsd:enumeration value="Scroll"/>
     <xsd:enumeration value="Spin"/>
     <xsd:enumeration value="EditBox"/>
     <xsd:enumeration value="Dialog"/>
   </xsd:restriction>
 </xsd:simpleType>

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