バージョン

Report クラス

Report オブジェクトはレポートを印刷するか、レポートを XPS フォーマットでファイルにエクスポートするすべての必要なプロパティおよびメソッドを公開します。
シンタックス
'宣言
 
Public Class Report 
   Inherits ReportBase
public class Report : ReportBase 
解説

レポートを作成するには、以下を実行できます:

注: Report オブジェクトで次のプロパティを設定することにより、各ページの ReportPagePresenter のスタイル、テンプレート、ヘッダー コンテンツ、およびフッター コンテンツをレポート全体に指定できます:

  • PageContentTemplate
  • PageContentTemplateSelector
  • PageFooter
  • PageFooterTemplate
  • PageFooterTemplateSelector
  • PageHeader
  • PageHeaderTemplate
  • PageHeaderTemplateSelector
  • PagePresenterStyle
同じプロパティセットが ReportSection で公開され、セクションごとにこれらのデフォルトをオーバーライドします。

使用例
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);
}
参照