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

DockManager.Item[String] Property

Provides indexed access to the panels which belong to the dock manager by their names.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public DockPanel this[string name] { get; }

Parameters

Name Type Description
name String

A String value specifying the panel’s name.

Property Value

Type Description
DockPanel

A DockPanel object representing the panel with the specified name. null (Nothing in Visual Basic) if no panel is found.

Remarks

This property provides access to dock panels using index notation, the panel’s name is the parameter. The overloaded Item property can also be used to access dock panels by specifying their position within the dock panel collection of a dock manager.

See Also