Returns an annotated view using its index or its name from the AnnotatedViews collection.
Parameters:
iIndex
The index or the name of the AnnotatedView to retrieve from the collection of AnnotatedViews.
As a numerics, this index is the rank of the AnnotatedView in the collection.
The index of the first AnnotatedView in the collection is 1, and
the index of the last AnnotatedView is Count.
As a string, it is the name you assigned to the AnnotatedView.
Returns:
The retrieved AnnotatedView
Example:
This example retrieves in ThisAnnotatedView the ninth AnnotatedView,
and in ThatAnnotatedView the AnnotatedView named
AnnotatedView3 from the TheAnnotatedViews collection.
Dim ThisAnnotatedView As AnnotatedView
Set ThisAnnotatedView = TheAnnotatedViews.Item(9)
Dim ThatAnnotatedView As AnnotatedView
Set ThatAnnotatedView = TheAnnotatedViews.Item("AnnotatedView3")
Removes an annotated view from the AnnotatedViews collection.
Parameters:
iIndex
The index or the name of the AnnotatedView to retrieve from he collection of AnnotatedViews.
As a numerics, this index is the rank of the AnnotatedView in the collection.
The index of the first AnnotatedView in the collection is 1, and
the index of the last AnnotatedView is Count.
As a string, it is the name you assigned to the AnnotatedView.
Example:
The following example removes the tenth AnnotatedView and the AnnotatedView named
AnnotatedView2 from the TheAnnotatedViews collection.