| | | 1 | | namespace ArturRios.Data.Export.Excel.Configuration; |
| | | 2 | | |
| | | 3 | | /// <summary>Options for the Excel exporter.</summary> |
| | | 4 | | public class ExcelExportOptions |
| | | 5 | | { |
| | | 6 | | /// <summary>Worksheet name. Default "Sheet1".</summary> |
| | 8 | 7 | | public string SheetName { get; set; } = "Sheet1"; |
| | | 8 | | |
| | | 9 | | /// <summary>Whether to write a header row from the column map. Default true.</summary> |
| | 7 | 10 | | public bool IncludeHeader { get; set; } = true; |
| | | 11 | | |
| | | 12 | | /// <summary>Whether the header row is bold. Default true.</summary> |
| | 13 | 13 | | public bool BoldHeader { get; set; } = true; |
| | | 14 | | |
| | | 15 | | /// <summary>Whether to auto-fit column widths. Default true.</summary> |
| | 7 | 16 | | public bool AutoFitColumns { get; set; } = true; |
| | | 17 | | } |