IWizCombo Interface
Controls combo boxes of HTML-based wizards in Visual Studio.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)
Syntax
'Declaration
<GuidAttribute("F204CEA5-22B4-4AF3-8929-69FFF192AFB7")> _
Public Interface IWizCombo
[GuidAttribute("F204CEA5-22B4-4AF3-8929-69FFF192AFB7")]
public interface IWizCombo
[GuidAttribute(L"F204CEA5-22B4-4AF3-8929-69FFF192AFB7")]
public interface class IWizCombo
[<GuidAttribute("F204CEA5-22B4-4AF3-8929-69FFF192AFB7")>]
type IWizCombo = interface end
public interface IWizCombo
The IWizCombo type exposes the following members.
Properties
Name | Description | |
---|---|---|
Count | Gets a count of the items in the specified wizard combo box. | |
Enabled | Gets or sets a value indicating the enabled state of the WizCombo object. | |
item | Gets the index of the item in the specified wizard combo box. | |
ListIndex | Gets or sets the item's list index in the specified wizard combo box. | |
SelectedItem | Gets the currently selected item in a wizard combo box as a string. | |
Value | Gets or sets the data for the object. |
Top
Methods
Name | Description | |
---|---|---|
AddItem | Adds the specified item to the wizard combo box. | |
Clear | Clears all text from the object. | |
focus | Sets the cursor focus to the wizard combo box. | |
InsertItem | Inserts the specified item at the specified location in the wizard combo box. | |
RemoveItem | Removes the specified item from the wizard combo box. |
Top