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.

Definition

Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public Object this[
	int rowIndex,
	string columnName
] { get; }

Parameters

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.

Property Value

Object
Returns 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.

See Also