Class GridResizingEventArgs
Provides data for the ColumnResizing event.
Inherited Members
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridResizingEventArgs : GridCancelEventArgs
Constructors
GridResizingEventArgs(SfDataGrid)
Initializes a new instance of the GridResizingEventArgs class with the given DataGrid.
Declaration
public GridResizingEventArgs(SfDataGrid dataGrid)
Parameters
Type | Name | Description |
---|---|---|
SfDataGrid | dataGrid | The source of the event. |
Properties
Index
Gets the index of the column that is being resized.
Declaration
public int Index { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An index of the column being resized. |
NewValue
Gets the width of the column that is being resized.
Declaration
public double NewValue { get; }
Property Value
Type | Description |
---|---|
System.Double | The width of the column being resized. |
ResizingState
Gets the current status (starting or progressing or completed) when performing resizing operation.
Declaration
public ProgressStates ResizingState { get; }
Property Value
Type | Description |
---|---|
ProgressStates | Returns the ProgressStates that specifies the current status (starting or progressing or completed) when performing resizing operation. |