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

BaseContentContainer.GetEnumerator(Predicate<IContentContainer>) Method

Gets an enumerator that iterates through the current BaseContentContainer with a specific criteria.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public IEnumerator<IContentContainer> GetEnumerator(
    Predicate<IContentContainer> filter
)

Parameters

Name Type Description
filter Predicate<DevExpress.XtraBars.Docking2010.Views.WindowsUI.IContentContainer>

A System.Predicate object that defines a set of criteria and determines whether a BaseContentContainer‘s child meets those criteria.

Returns

Type Description
IEnumerator<DevExpress.XtraBars.Docking2010.Views.WindowsUI.IContentContainer>

An IEnumerator object that iterates through the current BaseContentContainer with a specific criteria.

See Also