ActiveReports.Viewer3 Request technical support
Insert Method
See Also  Example


index
Index of the new page.
value
Page to be inserted into the collection.
Inserts the specified page into the collection at the specified index.

Syntax

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

Parameters

index
Index of the new page.
value
Page to be inserted into the collection.

Example

C#Copy Code
private void Form1_Load(object sender, System.EventArgs e)
{
   rptInsertPage rpt =
new rptInsertPage();
   rptCoverPage rpt2 =
new rptCoverPage();
   viewer1.Document = rpt.Document;
   rpt.Run();
   rpt2.Run();
   rpt.Document.Pages.Insert(0, rpt2.Document.Pages[0]);
}
Visual BasicCopy Code
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim rpt As New rptInsertPage()
    Viewer1.Document = rpt.Document rpt.Run()
    Dim rpt2 As New rptCoverPage()
    rpt2.Run()
    rpt.Document.Pages.Insert(0, rpt2.Document.Pages(0))
End Sub

See Also