[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.ExportDocumentProperties

ExportDocumentProperties Property

ExportDocumentProperties

Gets or sets whether document properties are exported when saving to HTML.

This option controls whether the workbook's document properties are included in the generated HTML output. The default value is true.

Declaration
public bool ExportDocumentProperties { get; set; }
Public Property ExportDocumentProperties As Boolean
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.ExportDocumentProperties = false;
bool exportDocumentProperties = options.ExportDocumentProperties;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);