Class VirtualGridColumnWidthChangingEventArgs
Provides data for the ColumnWidthChanging event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class VirtualGridColumnWidthChangingEventArgs : VirtualGridColumnEventArgs
Constructors
VirtualGridColumnWidthChangingEventArgs(Int32, Int32, Int32, VirtualGridViewInfo)
Initializes a new instance of the VirtualGridColumnWidthChangingEventArgs class.
Declaration
public VirtualGridColumnWidthChangingEventArgs(int columnIndex, int oldWidth, int newWidth, VirtualGridViewInfo viewInfo)
Parameters
System.Int32
columnIndex
Index of the column. |
System.Int32
oldWidth
The old width. |
System.Int32
newWidth
The new width. |
VirtualGridViewInfo
viewInfo
The view info. |
Properties
Cancel
Gets or sets a value indicating whether the event is canceled.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
NewWidth
Gets the new column width.
Declaration
public int NewWidth { get; }
Property Value
System.Int32
|
OldWidth
Gets the old column width.
Declaration
public int OldWidth { get; }
Property Value
System.Int32
|