[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CssExportType

CssExportType Enum

CSS export type.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public enum CssExportType
Public Enum CssExportType
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.CssExportType = CssExportType.External;
using MemoryStream outputStream = new MemoryStream();
workbook.Save(outputStream, options);

Fields

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.