CSV Separator

Stimulsoft Reports.NET discussion
Post Reply
Arjune
Posts: 20
Joined: Mon Jan 28, 2019 9:26 am

CSV Separator

Post 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.
Max Shamanov
Posts: 786
Joined: Tue Sep 07, 2021 10:11 am

Re: CSV Separator

Post 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.
Arjune
Posts: 20
Joined: Mon Jan 28, 2019 9:26 am

Re: CSV Separator

Post by Arjune »

Alright, thank you for your answer.
Max Shamanov
Posts: 786
Joined: Tue Sep 07, 2021 10:11 am

Re: CSV Separator

Post by Max Shamanov »

Hello,

You are welcome!
Post Reply