バージョン

Export(UltraGrid) メソッド

新しい Infragistics.Documents.Reports.Report.Report を作成し、新しい Infragistics.Documents.Reports.Report.Section.ISection のレポート指定したグリッドをエクスポートします。
シンタックス
'宣言
 
Public Overloads Function Export( _
   ByVal grid As Infragistics.Win.UltraWinGrid.UltraGrid _
) As Infragistics.Documents.Reports.Report.Section.ISection
public Infragistics.Documents.Reports.Report.Section.ISection Export( 
   Infragistics.Win.UltraWinGrid.UltraGrid grid
)

パラメータ

grid
エクスポートする Infragistics.Win.UltraWinGrid.UltraGrid コントロール。

戻り値の型

グリッドがエクスポートされた新たに作成されたレポート内の新たに作成されたレポート セクション。
例外
例外解説
System.ArgumentNullExceptiongrid が null です。
使用例
Imports Infragistics.Documents.Report
Imports Infragistics.Win.UltraWinGrid.DocumentExport
Imports Infragistics.Documents.Report.Section

' Export the grid imports the overload of Export that takes only a grid.
' This creates a new report, creates a new section, and exports the grid
' into that section.  
Dim section As ISection = Me.ultraGridDocumentExporter1.Export(Me.ultraGrid1)

' Get the report from the section. 
Dim Report As Report = Section.Parent

' Publish the report. 
Report.Publish("grid.pdf", FileFormat.PDF)
using Infragistics.Documents.Report;
using Infragistics.Win.UltraWinGrid.DocumentExport;
using Infragistics.Documents.Report.Section;
   
// Export the grid using the overload of Export that takes only a grid.
// This creates a new report, creates a new section, and exports the grid
// into that section.  
ISection section = this.ultraGridDocumentExporter1.Export(this.ultraGrid1);

// Get the report from the section. 
Report report = section.Parent;

// Publish the report. 
report.Publish("grid.pdf", FileFormat.PDF);
参照