| Infragistics.Win.UltraWinGrid.DocumentExport Namespace > UltraGridDocumentExporter Class : InitializeRow Event |
Occurs when a row is initialized.
[Visual Basic]
Public Event InitializeRow() As EventHandler(Of DocumentExportInitializeRowEventArgs)[C#]
public event EventHandler<DocumentExportInitializeRowEventArgs> InitializeRow();The Row argument returns the grid row which is being initialized. Note that this row exists in the cloned export layout, so any changes made to this row will affect the export without affecting the on-screen grid. This row may not have the same state information (such as the Selected or Expanded state) as the actual grid row in the on-screen grid. To get the on-screen row associated with this row, use the GetRowFromPrintRow method.
The SkipRow argument specifies whether to skip the current row. This argument doesn't affect exporting of descendant rows.
The SkipDescendants argument specifies whether to skip the descendats of the current row.
The SkipSiblings argument specifies whether to skip sibling rows of the current row.
The TerminateExport argument specifies whether to terminate the export process. Current row will not be processed.
This event is fired for every grid row which is being exported, and before UltraGridDocumentExporter.RowExporting and UltraGridDocumentExporter.RowExported are fired. Use this event to set grid row specific properties and to control exporting process.
UltraGridDocumentExporter Class | UltraGridDocumentExporter Members