[]
CSS export type.
public enum CssExportType
Public Enum CssExportType
HtmlSaveOptions options = new HtmlSaveOptions();
options.CssExportType = CssExportType.External;
using MemoryStream outputStream = new MemoryStream();
workbook.Save(outputStream, options);
| Name | Description |
|---|---|
| External | Export CSS to an external CSS file. |
| Inline | Export CSS with style attribute inside HTML elements. |
| Internal | Export CSS with the style tag in HTML. |