Class RowDataBoundEventArgs<T>
Provides information about an RowDataBound event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDataBoundEventArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
RowDataBoundEventArgs()
Declaration
public RowDataBoundEventArgs()
Properties
Data
Gets the current row data.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T | An object of type T that represents the current row data. |
Row
Gets or sets the CellDOM object associated with the grid content row.
Declaration
public CellDOM Row { get; }
Property Value
Type | Description |
---|---|
CellDOM | The CellDOM object that represents the grid content row. |
Remarks
The CellDom properties include:
- HasChanges: A boolean property that indicates whether the Cell object associated with the grid content row has changed.
- ClassList: A property that contains the class list of the grid content row.
- Styles: A property that contains the styles of the grid content row.
- AttributeList: A property that contains the attribute list of the grid content row.
- AddClass: A method to add class names to the class list for the current grid content row.
- AddStyle: A method to add styles for the current grid content row.
- SetAttribute: A method to set an attribute for the current grid content row.
RowHeight
Gets or sets the row height of the current row.
Declaration
public double RowHeight { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value that represents the row height of the current row. |