PowerTools ActiveReports for .NET 9.0J
Document プロパティ (Viewer)
使用例 

Viewerコントロールで表示するActiveReportsドキュメントを取得または設定します。
構文
'宣言
 
Public Property Document As SectionDocument
public SectionDocument Document {get; set;}

プロパティ値

現在ビューワに表示されているドキュメントを表すDocument値。

解説

ActiveReport.Run(true)メソッドを使用してレポートを実行する前に、ActiveReport.DocumentからDocumentプロパティに、ドキュメントを割り当てることができます。これにより、レポートのページが同期され、レポートの描画後ただちにビューワにページが表示されます。また、レポートの描画が完了した後で、DocumentプロパティにActiveReport.Documentオブジェクトの値を設定することもできます。

使用例
private void Form1_Load(object sender, System.EventArgs e)
{    
    ResourceManager res = new ResourceManager("rptLocalize.localization", this.GetType().Assembly);    
    this.viewer1.Localize = res;    
    rptLocalize rpt = new rptLocalize();    
    viewer1.Document = rpt.Document;    
    rpt.Run(true);
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load        
    Dim res As New ResourceManager("rptLocalize.localization", Me.GetType().Assembly)        
    Me.Viewer1.Localize = res        
    Dim rpt As New rptLocalize()        
    Viewer1.Document = rpt.Document        
    rpt.Run(True)
End Sub
参照

関連項目

Viewer クラス
Viewer メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.