Using the Process Analyst > Process Analyst for Developers > Automation Model > IProcessAnalyst.Panes [Property][Get]

IProcessAnalyst.Panes [Property][Get]

Gets a reference to the Panes collection. With this object you can create new, and browse existing panes.

Defined As

Execution Result

If the property get succeeds the return value will be Success. If the return variable is bad then the return value will be InvalidArgument.

Calling Syntax

Assumes you have a page called "myPage" and the Process Analyst has been named "AN35".

[VBA]

Sub Example()
Dim panes As Object
`Retrieve the panes collection
Set panes = myPage_AN35.Panes
End Sub

[Cicode]

FUNCTION Example()
OBJECT hProcessAnalyst = ObjectByName("AN35");
OBJECT panes;
// Retrieve the panes collection
panes = _ObjectGetProperty(hProcessAnalyst, "Panes");
END