Returns the specified Points object.
Set variable = object.Item ( Index ) |
- Index
- Required. A Variant that specifies the index of the Points object.
The Item method is the default method for the Parts collection. Therefore, the following two lines of code will yield the same result:
Set objFirstPart = objParts.Item(1)
Set objFirstPart = objParts(1)
Set objFirstPart = objParts.Item(1)
Set objFirstPart = objParts(1)