Class VirtualGridRowHeightChangingEventArgs
Provides data for the RowHeightChanging event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class VirtualGridRowHeightChangingEventArgs : VirtualGridRowEventArgs
Constructors
VirtualGridRowHeightChangingEventArgs(Int32, Int32, Int32, VirtualGridViewInfo)
Initializes a new instance of the VirtualGridRowHeightChangingEventArgs class.
Declaration
public VirtualGridRowHeightChangingEventArgs(int rowIndex, int oldHeight, int newHeight, VirtualGridViewInfo viewInfo)
Parameters
System.Int32
rowIndex
Index of the row. |
System.Int32
oldHeight
The old height. |
System.Int32
newHeight
The new height. |
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
|
NewHeight
Gets the new row height.
Declaration
public int NewHeight { get; }
Property Value
System.Int32
|
OldHeight
Gets the old row height.
Declaration
public int OldHeight { get; }
Property Value
System.Int32
|