Using the Process Analyst > Process Analyst for Developers > Automation Model > IObjectView.Items [Property][Get]

IObjectView.Items [Property][Get]

Gets the automation object representing the collection of items at the root of the ObjectView tree.

Defined As

Execution Result

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

Remarks

The method will provide a list of the pane items in tree. Each pane item has an Items property which allows access to the pen items listed under it.

Calling Syntax

This example assumes that there is an IObjectView object being passed in as a parameter.

[VBA]

Sub Example(objectView As Object)
Dim items As Object
`Getting Property value
Set items = objectView.Items
End Sub

[Cicode]

FUNCTION Example(OBJECT hObjectView)
// Getting property value
OBJECT hItems = _ObjectGetProperty(hObjectView, "Items");
END