2.7.17 ST_SelType

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

Referenced by: CT_FormControlPr

A simple type that specifies the selection type for the list box form control object. The allowed values are included in the following table.

Value

Meaning

single

Only single selection is allowed.

multi

Multiple selection is allowed. Clicking any item on the list will add it to the selection or, if already selected, will remove it from the selection.

extended

Multiple selection is allowed while the CTRL key is pressed.

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

 <xsd:simpleType name="ST_SelType">
   <xsd:restriction base="xsd:token">
     <xsd:enumeration value="single"/>
     <xsd:enumeration value="multi"/>
     <xsd:enumeration value="extended"/>
   </xsd:restriction>
 </xsd:simpleType>

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