Enum CsvEscapeFormat
Represents the format that is used in a CSV file in order to escape field values / special symbols.
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public enum CsvEscapeFormat
Backslash
Unix style programs use backslashes for escaping both (field and record) separators. Backslash is escaped with a second backslash.
BackslashAlternative
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.
None
No symbols are escaped.
Quotes
Excel uses single or double quotes to embed escaped text. Single or double quotes are escaped with second single or double quotes.
QuotesMixed
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.