Click or drag to resize

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; }

Property Value

Type: String
Remarks
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