TiPlotChannelCustom.SaveDataToFile

TiPlotChannelCustom See Also

Saves all data for the associated channel to a text file.

procedure SaveDataToFile(FileName: String);

Description

Call SaveDataToFile to save all channel data to a text file specified by FileName.

This file is saved as a tab delimited file with the first column containing XData and the second column containing YData. No header information is saved, only raw data points.

Example

Delphi

iComponent.Channel[0].SaveDataToFile('C:\TextFile.txt'); //Save Channel Data

Kylix

iComponent.Channel[0].SaveDataToFile('/home/username/textfile'); //Save Channel Data

C++ Builder

iComponent->Channel[0]->SaveDataToFile("C:\\TextFile.txt"); //Save Channel Data

Contents | Index | Previous | Next