Click or drag to resize
KaxComboBoxText Property

Gets or sets the text content of the KaxComboBox control.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string Text { 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.
Examples
[New Example]
string comboText = KaxComboBox1.Text
[New Example]
Dim comboText As String = KaxComboBox1.Text
See Also