バージョン

Export(OutputFormat) メソッド

Report を指定された出力フォーマットでファイルにエクスポートします。Infragistics.Windows.Reporting.ReportSettings.FileName は、エクスポートのファイル名を決定します。
シンタックス
'宣言
 
Public Overloads Sub Export( _
   ByVal outputFormat As OutputFormat _
) 
public void Export( 
   OutputFormat outputFormat
)

パラメータ

outputFormat
出力ドキュメント タイプ (XPS のみ)。
例外
例外解説
System.NotSupportedExceptionFullTrust 環境以外でエクスポートする場合、例外をスローされます。
System.InvalidOperationExceptionセクションのないレポートをエクスポートまたは印刷しようとすると例外がスローされます。
解説

ReportSettings.Infragistics.Windows.Reporting.ReportSettings.FileName プロパティが設定しない場合、Report はデフォルト ファイル名 (Export.xps) を持って、System.Environment.CurrentDirectory にエクスポートします。Infragistics.Windows.Reporting.ReportSettings.FileName プロパティはフォルダ名 (例えば「C:\MyFolder\」) だけを含む場合、Report は Export.xps のファイル名を持って、そのフォルダーにエクスポートします。プロパテイがファイル名 (例えば「xamGridExport.xps」) だけを含む場合、Report は指定された名前を持って、CurrentDirectory にエクスポートします。

使用例
Private Sub ExportReport()
    Dim reportObj As New Report()
    Dim section As New EmbeddedVisualReportSection(XamDataGrid1)
    reportObj.Sections.Add(section)
    
    ' Set the file name 
    reportObj.ReportSettings.FileName = "c:\export.xps"
    
    ' Call export method
    reportObj.Export(OutputFormat.XPS)
End Sub
private void ExportReport()
{
	Report reportObj = new Report();
	EmbeddedVisualReportSection section = new EmbeddedVisualReportSection(XamDataGrid1);
	reportObj.Sections.Add(section);

   // Set the file name 
	reportObj.ReportSettings.FileName = "c:\\export.xps";

	// Call export method
	reportObj.Export(OutputFormat.XPS);
}
参照