バージョン

Print(Boolean,Boolean) メソッド

オプションの進行状態ウィンドウと標準の印刷ダイアログを表示して、レポートを印刷します。
シンタックス
'宣言
 
Public Overloads Sub Print( _
   ByVal showPrintDialog As Boolean, _
   ByVal showReportProgressControl As Boolean _
) 
public void Print( 
   bool showPrintDialog,
   bool showReportProgressControl
)

パラメータ

showPrintDialog
True の場合、印刷を開始する前に標準の印刷ダイアログがユーザーに表示されます。
showReportProgressControl
True の場合、印刷の処理中に進行状況ウィンドウが表示されます。
使用例
Imports Infragistics.Windows.Reporting
 
Private  Sub CreateReport()
    ' 1. Create Report object
    Dim reportObj As Report =  New Report() 
 
    ' 2. Create EmbeddedVisualReportSection section. 
    ' Put the grid you want to print as a parameter of section's constructor
    Dim section As EmbeddedVisualReportSection =  New EmbeddedVisualReportSection(XamDataGrid1) 
 
    ' 3. Add created section to report's section collection
    reportObj.Sections.Add(section)
 
    ' Optional. If you have progress indicator set its Report property to created report
    progressInfo.Report = reportObj
 
    ' 4. Call print method
    reportObj.Print(True, False)
End Sub
using Infragistics.Windows.Reporting;

private void CreateReport()
{
    // 1. Create Report object
    Report reportObj = new Report();

    // 2. Create EmbeddedVisualReportSection section. 
    // Put the grid you want to print as a parameter of section's constructor
    EmbeddedVisualReportSection section = new EmbeddedVisualReportSection(XamDataGrid1);

    // 3. Add created section to report's section collection
    reportObj.Sections.Add(section);

    // Optional. If you have progress indicator set its Report property to created report
    progressInfo.Report = reportObj;

    // 4. Call print method
    reportObj.Print(true, false);
}
参照