AutoComplete for ASP.NET Web Forms
Document プロパティ
使用例 

C1.C1Report.4 アセンブリ > C1.C1Report 名前空間 > C1Report クラス : Document プロパティ
Gets a System.Drawing.Printing.PrintDocument object that can be used to render the report to a printer or into a print preview control.
シンタックス
'宣言
 
Public ReadOnly Property Document As System.Drawing.Printing.PrintDocument
public System.Drawing.Printing.PrintDocument Document {get;}
使用例
The examples below show how you can use the Document property to print the report or show it in a System.Windows.Forms.PrintPreviewDialog control.
// print the report to the default printer
_c1r.Document.Print();
            
// show the report in a PrintPreviewDialog
PrintPreviewDialog p = new PrintPreviewDialog():
p.Document = _c1r.Document;
p.ShowDialog();
参照

C1Report クラス
C1Report メンバ