SetCSV (deprecated)

Ensures that all exported values are delimited by a comma separator. This action has been deprecated and is scheduled to be removed in a future release. It is recommended that you no longer use this action. Instead, use the SetCSVMode action in the ExportToText action library.

Syntax

bool SetCSV (StrParam)

Parameters

TRUE or ON: Enables CSV formatted output using a comma separator.

FALSE: Uses a custom separator, as set by SetElementSeparator(), between output fields.

OFF: Causes no separator to be placed between output fields.

Smart parameters are supported.

Returns

Always True.

Level

All levels.

Details

Ensures that all exported values are delimited by a comma separator.
Example
SetCSV("TRUE")
ExportFieldValue("Date")
ExportFieldValue("Number")
ExportFieldValue("Total")
SetCSV("FALSE")     

This sequence will export the captured values of the Date, Number, and Total Field objects into your Export file. A comma will be added after each value to separate the fields.