TiPlotChannelCustom.SavePropertiesToFile

TiPlotChannelCustom See Also

Streams out all properties for the associated channel to a text file.

procedure SavePropertiesToFile(FileName: String);

Description

Call SavePropertiesToFile to stream out all of the properties of the associated channel to a file.

This file is in a proprietary text format and is generally used to save channel property settings for later reloading by the LoadPropertiesFromFile method.

Example

Delphi

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

Kylix

iComponent.Channel[0].SavePropertiesToFile('/home/username/textfile'); //Save Properties

C++ Builder

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

Contents | Index | Previous | Next