public string SelectedText { get; set; }Public Property SelectedText As String
Get
Setpublic:
property String^ SelectedText {
String^ get ();
void set (String^ value);
}member SelectedText : string with get, setIf the DropDownStyle is set to DropDownList this always returns the full text of the selected item. Attempts to set the selected text in that mode are ignored.
If there is no selected text, this property returns a zero-length string.