Options for CsvExportOptions).
Object
Namespace: Radzen.Documents.Spreadsheet
Assembly: Radzen.Blazor.dll
public sealed class CsvExportOptionsOutput encoding. Defaults to UTF-8 with BOM, matching Excel's "Save As CSV".
public Text.Encoding Encoding { get; set; }
| Type | Description |
|---|---|
| Text.Encoding | Output encoding. Defaults to UTF-8 with BOM, matching Excel's "Save As CSV". |
Line ending. Defaults to \r\n.
public string LineEnding { get; set; }
| Type | Description |
|---|---|
| string | Line ending. Defaults to \r\n. |
The character used to quote fields. Defaults to ".
public char QuoteChar { get; set; }
| Type | Description |
|---|---|
| char | The character used to quote fields. Defaults to ". |
Quoting strategy. Defaults to Minimal.
public Documents.Spreadsheet.CsvQuoting Quoting { get; set; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.CsvQuoting | Quoting strategy. Defaults to Minimal. |
The field separator. Defaults to ,.
public char Separator { get; set; }
| Type | Description |
|---|---|
| char | The field separator. Defaults to ,. |
The sheet to export. When null, the first sheet of the workbook is exported.
public Documents.Spreadsheet.Worksheet Sheet { get; set; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.Worksheet | The sheet to export. When null, the first sheet of the workbook is exported. |