Class QueryRowHeightEventArgs
Provides data for the QueryRowHeight event.
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class QueryRowHeightEventArgs : GridHandledEventArgs
Constructors
QueryRowHeightEventArgs(Int32, Double, Object)
Initializes a new instance of the QueryRowHeightEventArgs class using the specified index, height and source.
Declaration
public QueryRowHeightEventArgs(int index, double height, object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index of the row for which the height is queried. |
System.Double | height | The queried height of the row. |
System.Object | originalSource | The source that triggers the event. |
Properties
Height
Gets or sets the height for the row for which the event is fired.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The height of the row for which the event is fired. |
RowIndex
Gets the row index for which the event is fired.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the row for which the event is fired. |