Enum
CsvEscapeFormat

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:

cs-api-definition
public enum CsvEscapeFormat

Fields

Backslash

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

Declaration

cs-api-definition
Backslash = 1

Field Value

CsvEscapeFormat

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.

Declaration

cs-api-definition
BackslashAlternative = 2

Field Value

CsvEscapeFormat

None

No symbols are escaped.

Declaration

cs-api-definition
None = 0

Field Value

CsvEscapeFormat

Quotes

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

Declaration

cs-api-definition
Quotes = 3

Field Value

CsvEscapeFormat

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.

Declaration

cs-api-definition
QuotesMixed = 4

Field Value

CsvEscapeFormat