Page 1 of 1

CSV Separator

Posted: Tue Sep 20, 2022 9:16 am
by Arjune
Hello,

I would like to know which separator can be used when exporting a CSV file from a StiReport?

I am setting the following parameters before exporting :

Code: Select all

StiExportSettings settings = new StiDataExportSettings()
{
	SkipColumnHeaders = generateReportSettings.SkipColumnHeaders,
	Separator = generateReportSettings.Separator
};
stiReport.ExportDocument(GetStiExportFormat(exportType), stream, settings);
So I would like to know which values the "Separator" property can take, besides the obvious "," and ";" ?

Thank you for your help.

Re: CSV Separator

Posted: Tue Sep 20, 2022 5:08 pm
by Max Shamanov
Hello,
I would like to know which separator can be used when exporting a CSV file from a StiReport?
By default, the separator will be set from the system.
So I would like to know which values the "Separator" property can take, besides the obvious "," and ";" ?
You can set the separator as you wish.

Thank you.

Re: CSV Separator

Posted: Wed Sep 21, 2022 7:44 am
by Arjune
Alright, thank you for your answer.

Re: CSV Separator

Posted: Wed Sep 21, 2022 4:28 pm
by Max Shamanov
Hello,

You are welcome!