Class ResizingColumnsEventArgs
Provides data for ResizingColumns event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class ResizingColumnsEventArgs : GridCancelEventArgs
Constructors
ResizingColumnsEventArgs(Object)
Initializes a new instance of the ResizingColumnsEventArgs class.
Declaration
public ResizingColumnsEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
Properties
ColumnIndex
Gets the index of the column that is being resized.
Declaration
public int ColumnIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An index of the column. |
Reason
Gets the reason for column resizing operation.
Declaration
public ColumnResizingReason Reason { get; }
Property Value
Type | Description |
---|---|
ColumnResizingReason | Returns the ColumnResizingReason that specifies the reason for column resizing operation. |
Width
Gets or sets the width of the column being resized.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The width of the column being resized. |