WizCombo Interface
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.
Controls combo boxes in HTML-based wizards of Visual Studio.
public interface class WizCombo : Microsoft::VisualStudio::VsWizard::_IDispWizComboEvents_Event, Microsoft::VisualStudio::VsWizard::IWizCombo
public interface class WizCombo : Microsoft::VisualStudio::VsWizard::_IDispWizComboEvents_Event, Microsoft::VisualStudio::VsWizard::IWizCombo
__interface WizCombo : Microsoft::VisualStudio::VsWizard::_IDispWizComboEvents_Event, Microsoft::VisualStudio::VsWizard::IWizCombo
[System.Runtime.InteropServices.CoClass(typeof(Microsoft.VisualStudio.VsWizard.WizComboClass))]
[System.Runtime.InteropServices.Guid("666E6B65-1D7A-43C7-9A82-3EF6B988A02D")]
public interface WizCombo : Microsoft.VisualStudio.VsWizard._IDispWizComboEvents_Event, Microsoft.VisualStudio.VsWizard.IWizCombo
[<System.Runtime.InteropServices.CoClass(typeof(Microsoft.VisualStudio.VsWizard.WizComboClass))>]
[<System.Runtime.InteropServices.Guid("666E6B65-1D7A-43C7-9A82-3EF6B988A02D")>]
type WizCombo = interface
interface IWizCombo
interface _IDispWizComboEvents_Event
Public Interface WizCombo
Implements _IDispWizComboEvents_Event, IWizCombo
- Derived
- Attributes
- Implements
Remarks
See WizComboClass for documentation.
Properties
Count |
Gets a count of the items in the specified wizard combo box. (Inherited from IWizCombo) |
Enabled |
Gets or sets a value indicating the enabled state of the WizCombo object. (Inherited from IWizCombo) |
item[Int32] |
Gets the index of the item in the specified wizard combo box. (Inherited from IWizCombo) |
ListIndex |
Gets or sets the item's list index in the specified wizard combo box. (Inherited from IWizCombo) |
SelectedItem |
Gets the currently selected item in a wizard combo box as a string. (Inherited from IWizCombo) |
Value |
Gets or sets the data for the object. (Inherited from IWizCombo) |
Methods
add_Change(_IDispWizComboEvents_ChangeEventHandler) | (Inherited from _IDispWizComboEvents_Event) |
add_KeyDown(_IDispWizComboEvents_KeyDownEventHandler) | (Inherited from _IDispWizComboEvents_Event) |
AddItem(String) |
Adds the specified item to the wizard combo box. (Inherited from IWizCombo) |
Clear() |
Clears all text from the object. (Inherited from IWizCombo) |
focus() |
Sets the cursor focus to the wizard combo box. (Inherited from IWizCombo) |
InsertItem(String, Int32) |
Inserts the specified item at the specified location in the wizard combo box. (Inherited from IWizCombo) |
remove_Change(_IDispWizComboEvents_ChangeEventHandler) | (Inherited from _IDispWizComboEvents_Event) |
remove_KeyDown(_IDispWizComboEvents_KeyDownEventHandler) | (Inherited from _IDispWizComboEvents_Event) |
RemoveItem(Int32) |
Removes the specified item from the wizard combo box. (Inherited from IWizCombo) |
Events
Change |
This API supports the product infrastructure and is not intended to be used directly from your code. Indicates that the selection in the specified wizard combo box has changed. (Inherited from _IDispWizComboEvents_Event) |
KeyDown |
This API supports the product infrastructure and is not intended to be used directly from your code. Indicates that the specified key is pressed. (Inherited from _IDispWizComboEvents_Event) |