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.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
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