バージョン

CellExporting イベント

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

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

プロパティ解説
CellValue グリッド セル値を返します。
ExportValue Infragistics.Win.UltraWinGrid.WordWriter.TableCellExportingEventArgsから継承されます。レポートにエクスポートされる値を返すか、設定します。
GridColumn エクスポートされているセルを含む Infragistics.Win.UltraWinGrid.UltraGridColumn を返します。
GridRow セルを含む Infragistics.Win.UltraWinGrid.UltraGridRow を返します。
WordTableCellSettings Infragistics.Win.UltraWinGrid.WordWriter.TableCellExportingEventArgsから継承されます。Word 文書の BackColor、Font、VerticalAlignment などのテーブル セルのプロパティを取得または設定します。
解説

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

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

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

Cancel 引数を使用して、セルのエクスポートをキャンセルします。

これらのイベント引数を使用して、セルのエクスポートをオーバーライドし、カスタム エクスポートを提供することが可能です。通常、これは Cancel を True に設定し、コンテンツを ReportCell に追加することで行われます。

参照