'宣言 Public Overloads Sub Export( _ ByVal outputFormat As OutputFormat, _ ByVal stream As Stream _ )
public void Export( OutputFormat outputFormat, Stream stream )
例外 | 解説 |
---|---|
System.NotSupportedException | FullTrust 環境以外でエクスポートする場合、例外をスローさせます。 |
System.InvalidOperationException | セクションのないレポートをエクスポートまたは印刷しようとすると例外がスローされます。 |
ストリームが Null の場合、Export(OutputFormat) を呼び出す結果と同じです。
Private Sub ExportReport() Dim reportObj As New Report() Dim section As New EmbeddedVisualReportSection(XamDataGrid1) reportObj.Sections.Add(section) ' Create stream and call export method Using fs As New FileStream("C:\export.xps", FileMode.Create) reportObj.Export(OutputFormat.XPS, fs) End Using End Sub
private void ExportReport() { Report reportObj = new Report(); EmbeddedVisualReportSection section = new EmbeddedVisualReportSection(XamDataGrid1); reportObj.Sections.Add(section); // Create stream and call export method using (FileStream fs = new FileStream("C:\\export.xps", FileMode.Create)) { reportObj.Export(OutputFormat.XPS, fs); } }