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

MVCxDockManager.Zones Property

Provides access to the collection of zones within the page.

Namespace: DevExpress.Web.Mvc

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

Declaration

public IEnumerable<MVCxDockZone> Zones { get; }

Property Value

Type Description
IEnumerable<MVCxDockZone>

A IEnumerable<T><MVCxDockZone,> collection containing zones.

Remarks

Use the Zones property to get access to a collection of zones within the page. A particular zone can be accessed using index notation or the MVCxDockManager.FindZoneByUID method.

To access a collection of panels within the page, use the MVCxDockManager.Panels property.

See Also