ASPxDockManager.Panels Property
In This Article
Provides access to the collection of panels within the page.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public IEnumerable<ASPxDockPanel> Panels { get; }
#Property Value
Type | Description |
---|---|
IEnumerable<ASPx |
An IEnumerable |
#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