[]
Gets or sets which worksheet is exported to HTML.
This property is used for exporting a specific worksheet of the workbook.
public string ExportSheetName { get; set; }
Public Property ExportSheetName As String
HtmlSaveOptions options = new HtmlSaveOptions();
options.ExportSheetName = "Sheet2";
string sheetName = options.ExportSheetName;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);