Class RowResizedEventArgs
Provides information about the RowResized event.
Namespace: Syncfusion.Blazor.Spreadsheet
Assembly: Syncfusion.Blazor.Spreadsheet.dll
Syntax
public class RowResizedEventArgs : Object
Remarks
This event handler receives a RowResizedEventArgs object which provides the details of the resized row.
Constructors
RowResizedEventArgs()
Declaration
public RowResizedEventArgs()
Properties
RowHeight
Gets the new height of the resized row.
Declaration
public double RowHeight { get; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the height of the resized row. |
RowIndex
Gets the index of the row that was resized.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An System.Int32 representing the zero-based index of the resized row. For example, 0 represents the first row, 1 represents the second row, and so on. |