Class
VirtualGridRowHeightChangingEventArgs

Provides data for the RowHeightChanging event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class VirtualGridRowHeightChangingEventArgs : VirtualGridRowEventArgs

Inheritance: objectEventArgsVirtualGridEventArgsVirtualGridRowEventArgsVirtualGridRowHeightChangingEventArgs

Inherited Members VirtualGridRowEventArgs.RowIndexVirtualGridEventArgs.ViewInfoEventArgs.Empty

Constructors

VirtualGridRowHeightChangingEventArgs(int, int, int, VirtualGridViewInfo)

Initializes a new instance of the VirtualGridRowHeightChangingEventArgs class.

Declaration

cs-api-definition
public VirtualGridRowHeightChangingEventArgs(int rowIndex, int oldHeight, int newHeight, VirtualGridViewInfo viewInfo)

Parameters

rowIndex

int

Index of the row.

oldHeight

int

The old height.

newHeight

int

The new height.

viewInfo

VirtualGridViewInfo

The view info.

Properties

Cancel

Gets or sets a value indicating whether the event is canceled.

Declaration

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool

NewHeight

Gets the new row height.

Declaration

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

Property Value

int

OldHeight

Gets the old row height.

Declaration

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

Property Value

int