バージョン

CellExported イベント

グリッドのセルがレポートにエクスポートされた後に発生
シンタックス
'宣言
 
Public Event CellExported As EventHandler(Of CellExportedEventArgs)
public event EventHandler<CellExportedEventArgs> CellExported
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、CellExportedEventArgs 型の引数を受け取りました。次の CellExportedEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
GridColumn エクスポートされているセルを含む Infragistics.Win.UltraWinGrid.UltraGridColumn を返します。
GridRow セルを含む Infragistics.Win.UltraWinGrid.UltraGridRow を返します。
ReportCell セルのコンテンツがエクスポートされた Infragistics.Documents.Reports.Report.Grid.IGridCell を返します。
Value グリッド セル値を返します。
解説

CellExportedEventArgs.GridRow はセルを含む Infragistics.Win.UltraWinGrid.UltraGridRow を返します。

CellExportedEventArgs.GridColumn は関連付けられた Infragistics.Win.UltraWinGrid.UltraGridColumn を返します。

CellExportedEventArgs.ReportCell はセルのコンテンツがエクスポートされた Infragistics.Documents.Reports.Report.Grid.IGridCell を返します。

このイベントはデータ セルのみに対して発生します。ヘッダーまたは集計セルに対しては発生しません。ヘッダー セルには HeaderCellExported を使用します。集計セルには、SummaryCellExported を使用します。

参照