Class QueryRowHeightEventArgs
Provides data for QueryRowHeight event.
Inheritance
System.Object
System.EventArgs
QueryRowHeightEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class QueryRowHeightEventArgs : GridHandledEventArgs
Constructors
QueryRowHeightEventArgs(Int32, Int32, Object)
Initializes a new instance of the QueryRowHeightEventArgs class.
Declaration
public QueryRowHeightEventArgs(int index, int height, object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index of the row. |
System.Int32 | 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 int Height { get; set; }
Property Value
Type |
---|
System.Int32 |
RowIndex
Gets the index of the row to which needs to query the row height.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |