Class RowInfo<T>
Defines the row info such as data, row index and cell index.
Inheritance
System.Object
RowInfo<T>
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowInfo<T> : Object
Type Parameters
Name |
---|
T |
Constructors
RowInfo()
Declaration
public RowInfo()
Properties
Cell
returns particular cell element.
Declaration
public DOM Cell { get; set; }
Property Value
Type |
---|
DOM |
CellIndex
returns particular cell index.
Declaration
public int CellIndex { get; }
Property Value
Type |
---|
System.Int32 |
Column
return particular column information.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
Row
returns particular row element.
Declaration
public DOM Row { get; set; }
Property Value
Type |
---|
DOM |
RowData
returns particular row data.
Declaration
public T RowData { get; }
Property Value
Type |
---|
T |
RowIndex
returns particular rowIndex.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |