Class
RowHeightChangingEventArgs

Event arguments for RowHeightChanging event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class RowHeightChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsRowHeightChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

RowHeightChangingEventArgs(GridViewRowInfo, int)

Initializes a new instance of the RowHeightChangingEventArgs class.

Declaration

cs-api-definition
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight)

Parameters

row

GridViewRowInfo

The GridViewRowInfo to resize.

newHeight

int

The new row height.

RowHeightChangingEventArgs(GridViewRowInfo, int, bool)

Initializes a new instance of the RowHeightChangingEventArgs class.

Declaration

cs-api-definition
public RowHeightChangingEventArgs(GridViewRowInfo row, int newHeight, bool cancel)

Parameters

row

GridViewRowInfo

The GridViewRowInfo to resize.

newHeight

int

The new row height.

cancel

bool

a value indicating whether to cancel the event

Properties

NewHeight

Gets the new row height.

Declaration

cs-api-definition
public int NewHeight { get; }

Property Value

int

Row

Gets the GridViewRowInfo to resize.

Declaration

cs-api-definition
public GridViewRowInfo Row { get; }

Property Value

GridViewRowInfo