Auto Complete Combo BoxItem(Int 32, 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: 2024.12.31.0
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.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public Object? this[
int rowIndex,
string columnName
] { get; }VB
Public ReadOnly Default Property Item (
rowIndex As Integer,
columnName As String
) As Object
GetC++
public:
property Object^ default[int rowIndex, String^ columnName] {
Object^ get (int rowIndex, String^ columnName);
}F#
member Item : Object with getParameters
- 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
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.