New to Telerik UI for WinFormsStart a free 30-day trial

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 CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the RowHeightChangingEventArgs class.

C#
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight, bool cancel)
Parameters:rowGridViewRowInfo

The GridViewRowInfo to resize.

newHeightint

The new row height.

cancelbool

a value indicating whether to cancel the event

Initializes a new instance of the RowHeightChangingEventArgs class.

C#
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight)
Parameters:rowGridViewRowInfo

The GridViewRowInfo to resize.

newHeightint

The new row height.

Properties

Gets the new row height.

C#
public int NewHeight { get; }

Gets the GridViewRowInfo to resize.

C#
public GridViewRowInfo Row { get; }