ASPxClientDockZone.GetPanels Method
In This Article
Returns an array of panels that are docked in the current zone and meet a specified criteria.
#Declaration
TypeScript
GetPanels(
filterPredicate?: ASPxClientDockingFilterPredicate
): ASPxClientDockPanel[]
#Parameters
Name | Type | Description |
---|---|---|
filter |
ASPx |
An ASPx |
#Returns
Type | Description |
---|---|
ASPx |
An array of ASPx |
#Remarks
Use the GetPanels method to access an array of panels docked in the current zone that meet the criteria defined in the filterPredicate delegate. You can get an array of all panels docked in the zone using the ASPxClientDockZone.GetPanels
method, without any parameter.
To get an array of panels contained in a page, use the ASPxDockManager’s ASPxClientDockManager.GetPanels methods.
See Also