SetElementSeparator
Ensures that all exported values are delimited by a separator designated as the parameter.
Syntax
bool SetElementSeparator (StrParam)
Parameters
The input parameter can be one of the following:- A field separator character: Uses the provided custom character as the separator between fields. Smart parameters are supported.
- ON or TRUE: Sets the field element separator to a single space. This is the default value.
- OFF or FALSE: No separator will be placed between fields.
Smart parameters are supported.
Returns
Always True.Level
All levels.Details
Ensures that all exported values are delimited by a separator designated as the parameter.Attention: If you wish to set your own custom separator, SetCSV(FALSE)
must be called prior to exporting fields. If SetCSV(FALSE) is not
called, then your custom element separator will not be used for export.
- Example
SetCSV("FALSE") SetElementSeparator("|")This action uses "|" to delimit the Export file's values.
SetElementSeparator("Off")Turns off the action.