Skip to main content

DataGridView.ExpandAllGroups(Boolean) Method

Expands all groups of rows.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

Declaration

public void ExpandAllGroups(
    bool raiseEvents = true
)

Optional Parameters

Name Type Default Description
raiseEvents Boolean True

true if all groups of rows are expanded; otherwise false.

Remarks

To expand an individual group of rows, use the DataGridView.ExpandGroupRow method.

To collapse groups of rows, use the DataGridView.CollapseAllGroups or DataGridView.CollapseGroupRow method.

See Also