Class ColumnResizedEventArgs
Provides information about the ColumnResized event.
Inherited Members
Namespace: Syncfusion.Blazor.Spreadsheet
Assembly: Syncfusion.Blazor.Spreadsheet.dll
Syntax
public class ColumnResizedEventArgs
Remarks
This event handler receives a ColumnResizedEventArgs object which provides the details of the resized column.
Constructors
ColumnResizedEventArgs()
Declaration
public ColumnResizedEventArgs()
Properties
ColumnIndex
Gets the index of the column that was resized.
Declaration
public int ColumnIndex { get; }
Property Value
| Type | Description |
|---|---|
| int | An int representing the zero-based index of the resized column. For example, 0 represents column A, 1 represents column B, and so on. |
ColumnName
Gets the name of the column that was resized.
Declaration
public string ColumnName { get; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the name of the resized column. |
ColumnWidth
Gets the new width of the resized column.
Declaration
public double ColumnWidth { get; }
Property Value
| Type | Description |
|---|---|
| double | A double representing the width of the resized column. |