Using the Process Analyst > Process Analyst for Developers > Automation Model > IPane.Collection [Property][Get]

IPane.Collection [Property][Get]

Returns a reference to the Panes collection that this Pane belongs to.

Defined As

Execution Result

If the property get succeeds the return value will be Success. If the pane is deleted the return value will be GeneralFailure.

See Also

IPanes Interface

Calling Syntax

This example assumes there is a valid Pane object to be passed into the example methods.

[VBA]

Sub Example(pane As Object)
Dim panes As Object
`Getting Property value
Set panes = pane.Collection
End Sub

[Cicode]

FUNCTION Example(OBJECT hPane)
// Getting property value
OBJECT hPanes = _ObjectGetProperty(hPane, "Collection");
END