Class ColumnResizingEventArgs
Represents the class that provides the data for the ColumnResizing event.
Inherited Members
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class ColumnResizingEventArgs : GridCancelEventArgs
Constructors
ColumnResizingEventArgs(Object)
Initializes a new instance of the ColumnResizingEventArgs class.
Declaration
public ColumnResizingEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
Properties
ColumnIndex
Gets the index of the column that being resized.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
Width
Gets or sets the width that needs to be set for the given column index.
Declaration
public double Width { get; set; }
Property Value
Type |
---|
System.Double |