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

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

Sets visibility options common for multiple DocumentGroups.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v19.2.dll

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