Table of Contents

TNamedRangeExportEventArgs Class

Arguments passed on TFlexCelHtmlExport.OnNamedRangeExport,

Syntax

Unit: FlexCel.Render

TNamedRangeExportEventArgs = class(EventArgs);

Constructors

Name Description
Create Creates a new Argument.

Properties

Name Description
Workbook ExcelFile with the name, positioned in the sheet that we are rendering.
Make sure if you modify ActiveSheet of this instance to restore it back to the original value before exiting the event.
Sheet Sheet index (1 based) of the html cell we are exporting.
Row Row index (1 based) of the html cell we are exporting. This number should be the same as the first row in the NamedRange.
Col Column index (1 based) of the html cell we are exporting. This number should be the same as the first column in the NamedRange.
NamedRange Named range that is being exported.
NameId This property is by default the same as NamedRange.Name. If you want to change the id of the span that will be exported to HTML, change it to the new value. To not export this name, set it to null.