Class TreeGridQueryRowHeightEventArgs
Provides data for QueryRowHeight event.
Namespace: Syncfusion.UI.Xaml.TreeGrid
Assembly: Syncfusion.SfGrid.WPF.dll
Syntax
public class TreeGridQueryRowHeightEventArgs : GridHandledEventArgs
Remarks
To change the height of the row, need to enable the Handled in GridHandledEventArgs of QueryRowHeight event.
Constructors
TreeGridQueryRowHeightEventArgs(Int32, Double, Object)
Initializes a new instance of the TreeGridQueryRowHeightEventArgs class.
Declaration
public TreeGridQueryRowHeightEventArgs(int index, double height, object originalSource)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The view index of the row. |
| System.Double | height | The height of the row. |
| System.Object | originalSource | The source of the event. |
Properties
Height
Gets or sets the height of the row.
Declaration
public double Height { get; set; }
Property Value
| Type |
|---|
| System.Double |
RowIndex
Gets the view index of the row.
Declaration
public int RowIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |