Skip to main content
A newer version of this page is available. .

CsvExportOptions.UseCustomSeparator Property

Specifies whether to use the default system or a custom separator character for CSV export.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v20.2.Core.dll

NuGet Packages: DevExpress.Printing.Core, DevExpress.WindowsDesktop.Printing.Core

Declaration

public bool UseCustomSeparator { get; set; }

Property Value

Type Description
Boolean

true, to use a custom separator; otherwise, false. The default is false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to UseCustomSeparator
Cross-Platform Class Library ExportOptions
.Csv .UseCustomSeparator
WPF Controls ExportOptionsContainer
.Csv .UseCustomSeparator

Remarks

This property is in effect only at design time and is hidden from IntelliSense.

  • When this property is set to false, the CsvExportOptions.Separator property is disabled in the Property Grid, which indicates its actual value (by adding the “Using System Separator“ note to it).

    csv-use-custom-separator-false

  • When this property is set to true, the CsvExportOptions.Separator property’s value becomes empty and editable and the new custom value becomes serializable.

    csv-use-custom-separator-true

Use the CsvExportOptions.GetActualSeparator property to find out which separator is applied on export to CSV.

See Also