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

ASPxDockManager.Panels Property

Provides access to the collection of panels within the page.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public IEnumerable<ASPxDockPanel> Panels { get; }

Property Value

Type Description
IEnumerable<ASPxDockPanel>

An IEnumerable<T><ASPxDockPanel,> collection containing panels.

Remarks

Use the Panels property to get access to a collection of panels within the page. A particular panel can be accessed using index notation or the ASPxDockManager.FindPanelByUID method.

To access a collection of zones within the page, use the ASPxDockManager.Zones property.

To access a collection of panels docked in a particular zone, use the ASPxDockZone.Panels property.

See Also