Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Applies To: Windows Server 2008
The noSort attribute is a Boolean value. If true, display the suggested values in the defined order of the suggestion elements; otherwise, sort the suggested values in alphabetical or numerical order.
Syntax
noSort="<true|false>"
where
true represents display the suggested values in the defined order of the suggestion elements.
false represents display in alphabetical or numerical order.
Remarks
The noSort attribute is an optional attribute, false by default.
Examples
This XML fragment specifies a comboBox element that will display the list of suggestions in elemental order.
<comboBox refId="Sample_ComboBox_Filename" noSort="true" >
<label>Sample Executable File Name</label>
<default>None</default>
<suggestion>Filename A</suggestion>
<suggestion>Filename B</suggestion>
<suggestion>EXECUTABLE.EXE</suggestion>
</comboBox>