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

ReadOnlyPanelCollection.Item[Int32] Property

Provides indexed access to the dock panels contained within the collection.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public DockPanel this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer value specifying the dock panel’s zero-based index within the collection.

Property Value

Type Description
DockPanel

A DockPanel object representing the dock panel at the specified position.

Remarks

Use this property to access the individual dock panels owned by the dock manager using index notation. If the index parameter is negative or exceeds the number of elements, an exception is raised.

See Also