Event arguments for RowHeightChanging event.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class RowHeightChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsRowHeightChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the RowHeightChangingEventArgs class.
C#
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight, bool cancel)
The GridViewRowInfo to resize.
newHeightintThe new row height.
cancelboola value indicating whether to cancel the event
Initializes a new instance of the RowHeightChangingEventArgs class.
C#
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight)
The GridViewRowInfo to resize.
newHeightintThe new row height.
Properties
Gets the GridViewRowInfo to resize.
C#
public GridViewRowInfo Row { get; }