GrapeCity ActiveReports for .NET 14.0J
PageStart イベント
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports 名前空間 > SectionReport クラス : PageStart イベント
レポートが新しいページへの出力を描画する前に発生します。
シンタックス
'宣言
 
Public Event PageStart As EventHandler
public event EventHandler PageStart
解説

このイベントは、アンバウンドレポートの実行中に、任意のページレベル変数を初期化するために使用します。

使用例
bool bSwitch;
private void rptGrapeCity_PageStart(object sender, System.EventArgs eArgs)
{
    if (bSwitch == true)
    {
        this.PrintWidth = 6.5F;
        this.Document.Printer.Landscape = false;
    }
}
' boolean to keep track of which orientation to use
Dim bSwitch As Boolean

Private Sub rptMain_PageStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.PageStart
    If bSwitch = True Then
        Me.PrintWidth = 6.5
        Me.Document.Printer.Landscape = False
    End If
End Sub
参照

SectionReport クラス
SectionReport メンバ