GrapeCity.ActiveReports.v9 アセンブリ > GrapeCity.ActiveReports 名前空間 > SectionReport クラス > Run メソッド : Run(Boolean) メソッド |
'宣言 Public Overloads Sub Run( _ ByVal syncDocument As Boolean _ )
public void Run( bool syncDocument )
レポートドキュメントがビューワコントロールにリンクされている場合、レポートはビューワの表示を同期させ、描画が完了するとただちにページをロードします。
private void Form1_Load(object sender, System.EventArgs e) { SectionReport1 rpt = new SectionReport1(); rpt.Run(True); viewer1.Document = rpt.Document; }
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim rpt As New rptMain() rpt.Run(True) Viewer1.Document = rpt.Document End Sub