DataNavigatorItem(Int32, 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.
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public Object this[
int rowIdx,
string colName
] { get; }
Public ReadOnly Default Property Item (
rowIdx As Integer,
colName As String
) As Object
Get
public:
property Object^ default[int rowIdx, String^ colName] {
Object^ get (int rowIdx, String^ colName);
}
member Item : Object with get
- 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.
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.