Argument | Description |
object | The References collection. |
index | An expression that specifies the position of a member of the collection referred to by the object argument. If a numeric expression, the index argument must be a number from 1 to the value of the collection's Count property. If a string expression, the index argument must be the name of a member of the collection. |
Debug.Print References(1).Name
Debug.Print References.Item(1).Name
See Also
Count property, References collection.