DXCollectionView.ExpandAllGroups(Boolean) Method
In This Article
Expands all groups of items.
Namespace: DevExpress.Maui.CollectionView
Assembly: DevExpress.Maui.CollectionView.dll
NuGet Package: DevExpress.Maui.CollectionView
#Declaration
C#
public void ExpandAllGroups(
bool raiseEvents = true
)
#Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
raise |
Boolean | True |
|
#Remarks
When you call the ExpandAllGroups method, the GroupExpanding and GroupExpanded events are raised for each group.
To expand an individual group of items, use the ExpandGroup method.
To collapse groups of items, use the CollapseAllGroups or CollapseGroup method.
See Also