Controls how CSV writers quote individual fields.
Namespace: Radzen.Documents.Spreadsheet
Assembly: Radzen.Blazor.dll
public enum CsvQuoting| Name | Description |
|---|---|
| Minimal | Quote a field only when it contains the separator, the quote character, or a line break. This is RFC 4180 behavior and what Excel emits. |
| Always | Always wrap every field in the quote character, regardless of contents. |
| Never | Never quote fields. The caller is responsible for ensuring values do not contain the separator or line breaks; otherwise the output is not parseable as CSV. |