Skip to main content

RowHeightEventArgs(Int32, Int32) Constructor

Creates a new RowHeightEventArgs object.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

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