WizComboClass::SelectedItem Property

 

Gets the currently selected item in a wizard combo box as a string.

Namespace:   Microsoft.VisualStudio.VsWizard
Assembly:  Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)

public:
property String^ SelectedItem {
	virtual String^ get();
}

Property Value

Type: System::String^

The currently selected item in a wizard combo box as a string.

var strSelectedItem = ReturnType.SelectedItem;  
// (where ReturnType is the ID of the OBJECT tag for 
// the wizard's editabled combo control)
ReturnType.RemoveItem(2);
Return to top
Show: