GrapeCity ActiveReports for .NET 12.0J
Insert メソッド (PagesCollection)
使用例 

指定したインデックスでページ要素をPagesCollectionに挿入します。
オーバーロード一覧
オーバーロード解説
Insert(Int32,Object)指定したPagesCollectionにページオブジェクトの要素を挿入します。  
Insert(Int32,Page)指定したページをコレクションの指定したインデックスに挿入します。  
使用例
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]);
}
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
参照

関連項目

PagesCollection クラス
PagesCollection メンバ

 

 


Copyright © 2003 GrapeCity inc. All rights reserved.