Class RowHeightChangingEventArgs
Event arguments for RowHeightChanging event.
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class RowHeightChangingEventArgs : CancelEventArgs
Constructors
RowHeightChangingEventArgs(GridViewRowInfo, Int32)
Initializes a new instance of the RowHeightChangingEventArgs class.
Declaration
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight)
Parameters
GridViewRowInfo
row
The GridViewRowInfo to resize. |
System.Int32
newHeight
The new row height. |
RowHeightChangingEventArgs(GridViewRowInfo, Int32, Boolean)
Initializes a new instance of the RowHeightChangingEventArgs class.
Declaration
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight, bool cancel)
Parameters
GridViewRowInfo
row
The GridViewRowInfo to resize. |
System.Int32
newHeight
The new row height. |
System.Boolean
cancel
a value indicating whether to cancel the event |
Properties
NewHeight
Gets the new row height.
Declaration
public int NewHeight { get; }
Property Value
System.Int32
|
Row
Gets the GridViewRowInfo to resize.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|