CommandBarComboBoxClass.ListIndex Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the index number of the selected item in the list portion of the CommandBarComboBox control. If nothing is selected in the list, this property returns zero. Read/write.
public:
virtual property int ListIndex { int get(); void set(int value); };
public virtual int ListIndex { get; set; }
member this.ListIndex : int with get, set
Public Overridable Property ListIndex As Integer
Property Value
Implements
Examples
This example uses the ListIndex property to determine the correct subroutine to run, based on the selection in the combo box on the command bar named “My Custom Bar.” Because the procedure uses ListIndex, the text in the combo box can be anything.
Remarks
Note: This property fails when applied to controls other than list controls.
Setting the ListIndex property causes the specified control to select the given item and execute the appropriate action in the application.