Skip to main content

ReadOnlyPanelCollection.IndexOf(DockPanel) Method

Returns the specified dock panel’s position within the collection.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public int IndexOf(
    DockPanel panel
)

Parameters

Name Type Description
panel DockPanel

A DockPanel object to locate in the collection.

Returns

Type Description
Int32

A zero-based integer representing the dock panel’s position within the collection. -1 if the collection doesn’t contain the specified dock panel.

Remarks

This method scans the collection starting at the first element and returns the index of the first matching element found.

See Also