Class ColumnResizedEventArgs
Provides information about the ColumnResized event.
Namespace: Syncfusion.Blazor.Spreadsheet
Assembly: Syncfusion.Blazor.Spreadsheet.dll
Syntax
public class ColumnResizedEventArgs : Object
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 |
---|---|
System.Int32 | An System.Int32 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 |
---|---|
System.String | A System.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 |
---|---|
System.Double | A System.Double representing the width of the resized column. |