Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TabbedView.SetGroupsVisibility(IEnumerable<DocumentGroup>, Boolean) Method

Sets visibility options common for multiple DocumentGroups.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public void SetGroupsVisibility(
    IEnumerable<DocumentGroup> groups,
    bool value
)

#Parameters

Name Type Description
groups IEnumerable<DocumentGroup>

An IEnumerable<DocumentGroup> object that contains DocumentGroups whose visibility is to be set.

value Boolean

A Boolean value specifying whether target DocumentGroups should be made visible.

#Remarks

The SetGroupsVisibility method receives a collection of DocumentGroups as the groups parameter and sets their visibility according to the value parameter. To specify an individual group’s visibility, use the DocumentGroup.Visible property, instead. Changing group visibility fires the DocumentGroup.VisibilityChanged event.

See Also