Version

LabelExporting Event

Occurs when the Field.Label of a Infragistics.Windows.DataPresenter.Field is about to be written to the Word document.
Syntax
'Declaration
 
Public Event LabelExporting As EventHandler(Of LabelExportingEventArgs)
public event EventHandler<LabelExportingEventArgs> LabelExporting
Event Data

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

PropertyDescription
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.
FieldGroup Returns a reference to the FieldGroup associated with this event, or null if this event is not associated with any FieldGroup.
Record (Inherited from Infragistics.Windows.DataPresenter.WordWriter.CellExportingEventArgsBase)Returns the associated Record.
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 Field label.

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