EditComboBoxGetText Property | |
Gives the selected text back
Namespace:
SOWIWin.Helper.Controls
Assembly:
SOWIWin.Helper (in SOWIWin.Helper.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public string GetText { get; }
Public ReadOnly Property GetText As String
Get
Property Value
Type:
StringRemarks
If nothing selected then gives null back.
If property
IsEditable equal true then gives an empty string back.
Examples string lSelectedText = (string)(this.EditNames.GetText == null ? "" : this.EditNames.GetText);
See Also