Using the Process Analyst > Process Analyst for Developers > Automation Model > IObjectViewItems.Item [Property][Get]

IObjectViewItems.Item [Property][Get]

Gets the ObjectViewItem at a supplied index location in this collection.

Defined As

Parameters

index

[in] Indicates the index location of the child item to return from this collection. (One based)

Calling Syntax

This example assumes there is a valid Items collection as retrieved from an ObjectView. (for example, VBA: objectView.Items).

[VBA]

Sub Example(Items As Object)
Dim item As Object
`Getting Property value
Set item = Items.Item(1)
End Sub

[Cicode]

FUNCTION Example(OBJECT hItems)
// Getting property value
OBJECT hItem = _ObjectCallMethod(hItems, "get_Item", 1);
END