Skip to main content
A newer version of this page is available. .

RowHeightEventArgs(Int32, Int32) Constructor

Creates a new RowHeightEventArgs object.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public RowHeightEventArgs(
    int rowHandle,
    int rowHeight
)

Parameters

Name Type Description
rowHandle Int32

An integer value specifying the row’s handle. This value is assigned to the RowHeightEventArgs.RowHandle property.

rowHeight Int32

An integer value specifying the row’s height in pixels. This value is assigned to the RowHeightEventArgs.RowHeight property.

Remarks

RowHeightEventArgs class instances are automatically created, initialized and passed to GridView.CalcRowHeight event handlers.

See Also