ASPxClientDockZone.GetPanels Method
Returns an array of panels that are docked in the current zone and meet a specified criteria.
Declaration
GetPanels(
filterPredicate?: ASPxClientDockingFilterPredicate
): ASPxClientDockPanel[]
Parameters
Name | Type | Description |
---|---|---|
filterPredicate | ASPxClientDockingFilterPredicate | An ASPxClientDockingFilterPredicate delegate that defines a set of criteria and determines whether a panel meets those criteria. |
Returns
Type | Description |
---|---|
ASPxClientDockPanel[] | An array of ASPxClientDockPanel objects. |
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