New to Telerik ReportingStart a free 30-day trial

Represents the format that is used in a CSV file in order to escape field values / special symbols.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public enum CsvEscapeFormat

Fields

Unix style programs use backslashes for escaping both (field and record) separators. Backslash is escaped with a second backslash.

C#
Backslash = 1

Some Unix style programs use backslashes for escaping field separators, but for escaping record separators can use \r\n instead of backslash. Backslash is escaped with a second backslash.

C#
BackslashAlternative = 2

No symbols are escaped.

C#
None = 0

Excel uses single or double quotes to embed escaped text. Single or double quotes are escaped with second single or double quotes.

C#
Quotes = 3

Some files use a mixed escaping format - fields are embedded in quotes (Excel like), quotes (single or double) are escaped with backslash (Unix like). Backslash is escaped with a second backslash.

C#
QuotesMixed = 4