IExport.asXLS
IExport

property asXLS: IXLSExport;

Type Library
TeeChartx

Description
The asXLS property accesses the XLSExport class which configures the xls (Excel) page to which the selected series data is exported.

Example [Visual Basic]:

With TChart1

.AddSeries scLine

.Series(0).FillSampleValues 10

.Export.asXLS.IncludeHeader = True

.Export.asXLS.IncludeLabels = True

.Export.asXLS.SaveToFile "C:\TestFiles\TeeChart.xls"

End With