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

RowAllowEventArgs(Int32, Boolean) Constructor

Creates a new RowAllowEventArgs object.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public RowAllowEventArgs(
    int rowHandle,
    bool allow
)

Parameters

Name Type Description
rowHandle Int32

An integer value representing the handle of the row. This value is assigned to the RowEventArgs.RowHandle property.

allow Boolean

true if the group row can be collapsed/expanded; otherwise, false. This value is assigned to the RowAllowEventArgs.Allow property.

Remarks

RowAllowEventArgs class instances are automatically created, initialized and passed to GridView.GroupRowExpanding and GridView.GroupRowCollapsing events.

See Also