Delimiter in TTMSLoggerCSVOutputHandler

Hi

In the help PDF file, is is written for TTMSLoggerCSVOutputHandler

"The TTMSLoggerCSVOutputHandler outputs the information as plain text to a csv file, separated by a delimiter, which can be configured with a separate property."

But it is not indicated how to change the delimiter :(

regards
olivier

The Delimiter is a property of the TTMSLoggerCSVOutputHandler


When using the RegisterOutputHandlerClass you can use the constructor overload which has an additional parameter Delimiter

TMSLogger.RegisterOutputHandlerClass(TTMSLoggerCSVOutputHandler, ['output.csv', ';']);
Pieter Scheldeman2018-06-21 13:37:09
Hi

Thanks a lot

Olivier