TiPlotChannelCustom.LoadPropertiesFromFile
TiPlotChannelCustom See Also
Streams in all properties for the associated channel from a text file.
procedure LoadPropertiesFromFile(FileName: String);
Description
Call LoadPropertiesFromFile to stream in all of the properties of the
associated channel from a file.
This file is in a proprietary text format and is generally used to load plot
component settings from files saved by the SavePropertiesToFile method.
Example
Delphi
//Load Properties
iComponent.Channel[0].LoadPropertiesFromFile('C:\TextFile.txt');
Kylix
//Load Properties
iComponent.Channel[0].LoadPropertiesFromFile('/home/username/textfile);
C++ Builder
//Load Properties
iComponent->Channel[0]->LoadPropertiesFromFile("C:\\TextFile.txt");
Contents | Index | Previous | Next