ReportViewer for ASP.NET Web Forms
Document プロパティ (C1Report)
使用例 

C1.C1Report.4 アセンブリ > C1.C1Report 名前空間 > C1Report クラス : Document プロパティ
レポートをプリンタまたは印刷プレビューコントロールにレンダリングするために使用できる System.Drawing.Printing.PrintDocument オブジェクトを取得します。
シンタックス
'宣言
 
Public ReadOnly Property Document As System.Drawing.Printing.PrintDocument
public System.Drawing.Printing.PrintDocument Document {get;}
使用例
次の例は、Document プロパティを使用して、レポートを印刷したり、System.Windows.Forms.PrintPreviewDialog コントロールにレポートを表示する方法を示します。
// デフォルトプリンタにレポートを出力します
_c1r.Document.Print();
      
// レポートを PrintPreviewDialog に表示します
PrintPreviewDialog p = new PrintPreviewDialog():
p.Document = _c1r.Document;
p.ShowDialog();
参照

C1Report クラス
C1Report メンバ