Class QueryRowHeightEventArgs
Provides data for the QueryRowHeight event.
Namespace: Syncfusion.SfDataGrid.XForms
Assembly: Syncfusion.SfDataGrid.XForms.dll
Syntax
public class QueryRowHeightEventArgs : GridHandledEventArgs
Constructors
QueryRowHeightEventArgs(Int32, Double, Boolean, Object)
Initializes a new instance of the QueryRowHeightEventArgs class using the specified index, height and source.
Declaration
public QueryRowHeightEventArgs(int index, double height, bool enableCaching, 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.Boolean | enableCaching | To enable or disable the cache. |
System.Object | originalSource | The source that triggers the event. |
Properties
EnableCaching
Gets or sets a value indicating whether to "enable" or "disable" the cache for which the event is fired.
Declaration
public bool EnableCaching { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean value denotes to enable or disable the cache. |
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. |