ActiveReports.Viewer3 Request technical support
Insert Method
See Also 


index
Insertion index in the collection.
value
New Bookmark object to be inserted at the specified index.
Inserts the specified Bookmark object at the specified index in the collection.

Syntax

Visual Basic (Declaration) 
Public Sub Insert( _
   ByVal index As Integer, _
   ByVal value As Bookmark _
) 
Visual Basic (Usage)Copy Code
Dim instance As BookmarksCollection
Dim index As Integer
Dim value As Bookmark
 
instance.Insert(index, value)
C# 
public void Insert( 
   int index,
   Bookmark value
)

Parameters

index
Insertion index in the collection.
value
New Bookmark object to be inserted at the specified index.

See Also