[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.CssExportType

CssExportType Property

CssExportType

Gets or sets the way in which the stylesheet (CSS) is exported.

Declaration
public CssExportType CssExportType { get; set; }
Public Property CssExportType As CssExportType
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.CssExportType = CssExportType.External;
CssExportType cssExportType = options.CssExportType;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);