GrapeCity ActiveReports for .NET 14.0J
InsertNew メソッド
使用例 

GrapeCity.ActiveReports.Document アセンブリ > GrapeCity.ActiveReports.Document.Section 名前空間 > PagesCollection クラス : InsertNew メソッド
新しいページのインデックス。
新しいPageオブジェクトを作成し、コレクション内の指定したインデックスに挿入します。
シンタックス
'宣言
 
Public Function InsertNew( _
   ByVal index As Integer _
) As Page
public Page InsertNew( 
   int index
)

パラメータ

index
新しいページのインデックス。
使用例
Private void Form1_Load(object sender, System.EventArgs e)
{
    rptInsertPage rpt = New rptInsertPage();
    viewer1.Document = rpt.Document;
    rpt.Run();
    rpt.Document.Pages.InsertNew(3);
}
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()
    rpt.Document.Pages.InsertNew(3)
End Sub
参照

PagesCollection クラス
PagesCollection メンバ