Data NavigatorItem(Int 32, String) Property
This can be used to get the value of the specified column in the specified row of the data
navigator's data source.
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
This 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 rowIdx,
string colName
] { get; }VB
Public ReadOnly Default Property Item (
rowIdx As Integer,
colName As String
) As Object
GetC++
public:
property Object^ default[int rowIdx, String^ colName] {
Object^ get (int rowIdx, String^ colName);
}F#
member Item : Object with getParameters
- rowIdx Int32
- The row index of the item.
- colName String
- The column name of the item to get. This can be any column in the data source, not just those displayed by the bound controls in the parent.
Property Value
ObjectThis 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.