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