IExport.asText
IExport

property asText: ITextExport;

Type Library
TeeChartx

Description
The asText property accesses the TextExport class which configures the text page to which the selected series data is exported.

Example [Visual Basic]:

With TChart1

.AddSeries scLine

.Series(0).FillSampleValues 10

.Export.asText.IncludeHeader = True

.Export.asText.IncludeLabels = True

.Export.asText.SaveToFile "C:\TestFiles\TeeChart.txt"

End With