Version

CellExporting Event

Occurs when a Infragistics.Windows.DataPresenter.Cell of a Infragistics.Windows.DataPresenter.DataRecord is about to be written to the Word document.
Syntax
'Declaration
 
Public Event CellExporting As EventHandler(Of CellExportingEventArgs)
public event EventHandler<CellExportingEventArgs> CellExporting
Event Data

The event handler receives an argument of type CellExportingEventArgs containing data related to this event. The following CellExportingEventArgs properties provide information specific to this event.

PropertyDescription
Cell Returns the cell whose value is being exported.
CellSettings (Inherited from Infragistics.Windows.DataPresenter.WordWriter.CellExportingEventArgsBase)Returns the resolved settings to be applied to the cell.
Field (Inherited from Infragistics.Windows.DataPresenter.WordWriter.CellExportingEventArgsBase)Returns the Field associated with the value being exported or null if there is no field associated with the value.
Record Returns the DataRecord whose cell is being exported.
Value (Inherited from Infragistics.Windows.DataPresenter.WordWriter.CellExportingEventArgsBase)Returns or sets the value that should be written for the cell.
Remarks

This event provides an opportunity to change the CellExportingEventArgsBase.Value that will written out for the specified cell.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also