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

MVCxDockManager.Panels Property

Provides access to the collection of panels within the page.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public IEnumerable<MVCxDockPanel> Panels { get; }

Property Value

Type Description
IEnumerable<MVCxDockPanel>

A IEnumerable<T><MVCxDockPanel,> 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 MVCxDockManager.FindPanelByUID method.

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

See Also