WizComboClass.SelectedItem 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 the currently selected item in a wizard combo box as a string.
public:
virtual property System::String ^ SelectedItem { System::String ^ get(); };
public:
virtual property Platform::String ^ SelectedItem { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(1610743817)]
public virtual string SelectedItem { [System.Runtime.InteropServices.DispId(1610743817)] get; }
[<System.Runtime.InteropServices.DispId(1610743817)>]
[<get: System.Runtime.InteropServices.DispId(1610743817)>]
member this.SelectedItem : string
Public Overridable ReadOnly Property SelectedItem As String
Property Value
The currently selected item in a wizard combo box as a string.
Implements
- Attributes
Examples
var strSelectedItem = ReturnType.SelectedItem;
// (where ReturnType is the ID of the OBJECT tag for
// the wizard's editabled combo control)
ReturnType.RemoveItem(2);