バージョン

Export(UltraGrid,ISection) メソッド

指定した ultragrid をレポートの指定したセクションにエクスポートします。
シンタックス
'宣言
 
Public Overloads Sub Export( _
   ByVal grid As Infragistics.Win.UltraWinGrid.UltraGrid, _
   ByVal section As Infragistics.Documents.Reports.Report.Section.ISection _
) 
public void Export( 
   Infragistics.Win.UltraWinGrid.UltraGrid grid,
   Infragistics.Documents.Reports.Report.Section.ISection section
)

パラメータ

grid
エクスポートする Infragistics.Win.UltraWinGrid.UltraGrid コントロール。
section
グリッドがエクスポートされる宛先 Infragistics.Documents.Reports.Report.Section.ISection
例外
例外解説
System.ArgumentNullExceptiongrid が null です。
System.ArgumentNullExceptionsection が null です。
使用例
Imports Infragistics.Documents.Report
Imports Infragistics.Win.UltraWinGrid.DocumentExport
Imports Infragistics.Documents.Report.Section

' Create a new report
Dim report As Report = New Report()

' Add a section. 
Dim section As ISection = report.AddSection()

' Export the grid into the section. 
Me.ultraGridDocumentExporter1.Export(Me.ultraGrid1, section)

' Publish the report. 
report.Publish("grid.pdf", FileFormat.PDF)
using Infragistics.Documents.Report;
using Infragistics.Win.UltraWinGrid.DocumentExport;
using Infragistics.Documents.Report.Section;

// Create a new report
Report report = new Report();

// Add a section. 
ISection section = report.AddSection();

// Export the grid into the section. 
this.ultraGridDocumentExporter1.Export(this.ultraGrid1, section);

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