[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.ExportSingleTab

ExportSingleTab Property

ExportSingleTab

Gets or sets whether a single HTML tab is exported when the workbook contains only one worksheet or when ExportSheetName specifies a worksheet to export.

The default value is false.

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