ComboBox Complex Type

The ComboBox complex type is a combo box display element with default/suggested entries. Must be associated with a TextElement when defined in the <elements> PolicyDefinition element.

<xs:complexType name="ComboBox">
    <xs:complexContent>
        <xs:extension
            base="DataElement"
        >
            <xs:sequence>
                <xs:element name="label"
                    type="string"
                 />
                <xs:element name="default"
                    type="string"
                    minOccurs="0"
                    maxOccurs="1"
                 />
                <xs:element name="suggestion"
                    type="string"
                    minOccurs="0"
                    maxOccurs="unbounded"
                 />
            </xs:sequence>
            <xs:attribute name="noSort"
                type="boolean"
                default="false"
             />
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

Child elements

Element Type Description
default string
label string
suggestion string

Attributes

Name Type Description
noSort boolean

 

 

Send comments about this topic to Microsoft

Build date: 10/15/2013