GrapeCity ActiveReports for .NET 14.0J
Pages プロパティ
使用例 

GrapeCity.ActiveReports.Document アセンブリ > GrapeCity.ActiveReports.Document 名前空間 > SectionDocument クラス : Pages プロパティ
ドキュメントのページへの参照を取得または設定します。
シンタックス
'宣言
 
Public ReadOnly Property Pages As PagesCollection
public PagesCollection Pages {get;}
解説

このコレクションを使用して、ドキュメントのページを削除したり変更したりします。

使用例
private void Detail_Format(object sender, System.EventArgs eArgs)
{
    for(int i = 0; i<Document.Pages.Count;i++)
    {
        this.Document.Pages[i].AddBookmark("New Bookmark", 25);
    }
}
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Dim i As Integer
    Try
        For i = 0 To Me.Document.Pages.Count - 1
            Me.Document.Pages(1).AddBookmark("New Bookmark", 8)
        Next
    Catch ex As Exception
    End Try
End Sub
参照

SectionDocument クラス
SectionDocument メンバ