'宣言 Public Overloads Sub Export( _ ByVal outputFormat As OutputFormat _ )
public void Export( OutputFormat outputFormat )
例外 | 解説 |
---|---|
System.NotSupportedException | FullTrust 環境以外でエクスポートする場合、例外をスローされます。 |
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); }