TiPlotChannelCustom.LogFileName
TiPlotChannelCustom See Also
Specifies the filename for the log file used by the channel interface.
property LogFileName : String
Description
Use LogFileName to get or set the filename (including path) for the log file.
This is the log file only for the associated channel.
Note: Channels may be synchronous or asynchronous. If you are only using
synchronous data, you can use the LogFileName logging feature off of the main component interface to save all channel data to a single log file.
Example
Delphi
iComponent.Channel[0].LogFileName := 'C:\LogFile.txt';
Kylix
iComponent.Channel[0].LogFileName := '/home/username/logfile';
C++ Builder
iComponent->Channel[0]->LogFileName = "C:\\LogFile.txt";
Contents | Index | Previous | Next