Gets or sets the text content of the KaxComboBox
control.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string Text { get; set; }
Public Property Text As String
Get
Set
public:
property String^ Text {
String^ get ();
void set (String^ value);
}
member Text : string with get, set
Property Value
Type:
String
Remarks
In standard mode, the currently selected text can be accessed using both the
Text property or KaxCombobox.SelectedItem.Text. In
AJAX callback modes, only the Text property can be used because
end-users can type or paste text that does not match the text of any item and
SelectedItem can be null.
Examplesstring comboText = KaxComboBox1.Text
Dim comboText As String = KaxComboBox1.Text
See Also