Version

DocumentRowExporting Event

Fires before the row elements in the document are created. This event can be cancelled to stop the row being exported.
Syntax
'Declaration
 
Public Event DocumentRowExporting As EventHandler(Of DocumentGridRowExportingEventArgs)
public event EventHandler<DocumentGridRowExportingEventArgs> DocumentRowExporting
Event Data

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

PropertyDescription
Cancel Use to cancel the export of the row.
ContainingGrid (Inherited from Infragistics.Web.UI.GridControls.DocumentGridRowExportedEventArgs)The IGrid in the report that the exported row will belong to.
GridRow (Inherited from Infragistics.Web.UI.GridControls.BaseExportRowEventArgs)Returns the row in the grid, if any, being exported
IsFooterRow (Inherited from Infragistics.Web.UI.GridControls.BaseExportRowEventArgs)Returns true if this is the footer row
IsHeaderRow (Inherited from Infragistics.Web.UI.GridControls.BaseExportRowEventArgs)Returns true if this is the header row
IsSummaryRow (Inherited from Infragistics.Web.UI.GridControls.BaseExportRowEventArgs)Returns true if this is a summary row
ReportRow (Inherited from Infragistics.Web.UI.GridControls.DocumentGridRowExportedEventArgs)The row object in the report created to display the grid's row object.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, 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