AutoCompleteComboBoxItem(String) Property
This can be used to get the value of the specified column in the currently selected item
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.18.0+3a863295c73252b22e8ab6862ed6bdc57bcbd0fc
public Object? this[
string columnName
] { get; }
Public ReadOnly Default Property Item (
columnName As String
) As Object
Get
public:
property Object^ default[String^ columnName] {
Object^ get (String^ columnName);
}
member Item : Object with get
- columnName String
- The column name of the item to get. This can be any column in the data
source, not just those displayed by the control.
ObjectReturns the entry at the specified column in the currently selected item. If
SelectedIndex equals -1 (no selection) or the column cannot be found, this
returns null.