Gets the ObjectViewItem at a supplied index location in this collection.
Defined As
Parameters
index
[in]
Indicates the
index location of the column to return from this collection. (One
based)
Calling Syntax
This example assumes there is a valid Columns collection as retrieved from an ObjectView (for example, VBA: objectView.Columns).
[VBA]
Sub Example(Columns As Object)
Dim column As Object
`Getting Property value
Set column = Columns.Item(1)
End Sub
[Cicode]
FUNCTION Example(OBJECT hColumns)
// Getting property value
OBJECT hColumn = _ObjectCallMethod(hColumns, "get_Item", 1);
END