AutoCompleteComboBoxItem(Int32, String) Property
This can be used to get the value of the specified column in the specified row of the list control's
data source.
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public Object this[
int rowIndex,
string columnName
] { get; }
Public ReadOnly Default Property Item (
rowIndex As Integer,
columnName As String
) As Object
Get
public:
property Object^ default[int rowIndex, String^ columnName] {
Object^ get (int rowIndex, String^ columnName);
}
member Item : Object with get
- rowIndex Int32
- The row index of the item.
- 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 specified row. If the row is out of bounds
or if the column cannot be found, this will return null.