Class RowResizedEventArgs
Provides information about the RowResized event.
Inherited Members
Namespace: Syncfusion.Blazor.Spreadsheet
Assembly: Syncfusion.Blazor.Spreadsheet.dll
Syntax
public class RowResizedEventArgs
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 |
|---|---|
| double | A 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 |
|---|---|
| int | An int representing the zero-based index of the resized row. For example, 0 represents the first row, 1 represents the second row, and so on. |