suggestion Element

Applies To: Windows Server 2008

The suggestion element is a localized string displayed as a drop-down choice of the combo box parameter.

Syntax

<suggestion>Placeholder localized text</suggestion>

Attributes

There are no attributes associated with this element.

Child elements

There are no child elements associated with this element.

Remarks

The suggestion element is optional. There is no limit to the number of suggestion elements allowed for a comboBox element.

Examples

This XML fragment specifies a combo box parameter with three suggested items displayed in the combo box parameter.

        <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>

Additional references

comboBox Element