Class ExcelHtmlOverrideExportSettings
- Namespace
- OfficeOpenXml.Export.HtmlExport
- Assembly
- EPPlus.dll
When exporting multiple ranges from the same workbook, this class can be used to override certain properties of the settings.
public class ExcelHtmlOverrideExportSettings
- Inheritance
-
ExcelHtmlOverrideExportSettings
- Inherited Members
Constructors
ExcelHtmlOverrideExportSettings()
public ExcelHtmlOverrideExportSettings()
Properties
Accessibility
Settings for usage of accessibility (aria, role) attributes of the table
public AccessibilitySettings Accessibility { get; }
Property Value
AdditionalTableClassNames
Use this property to set additional class names that will be set on the exported html-table.
public List<string> AdditionalTableClassNames { get; protected set; }
Property Value
HeaderRows
Number of header rows before the actual data. Default is 1.
public int HeaderRows { get; set; }
Property Value
Headers
If HeaderRows is 0, this collection contains the headers. If this collection is empty the table will have no headers.
public List<string> Headers { get; }
Property Value
TableId
Html id of the exported table.
public string TableId { get; set; }