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 Virtual
Declaration
public VirtualGridColumnWidthChangingEventArgs(int columnIndex, int oldWidth, int newWidth, VirtualGridViewInfo viewInfo)
Parameters
System. Index of the column. |
System. The old width. |
System. The new width. |
Virtual 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.
|
NewWidth
Gets the new column width.
Declaration
public int NewWidth { get; }
Property Value
System.
|
OldWidth
Gets the old column width.
Declaration
public int OldWidth { get; }
Property Value
System.
|