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