[]
Gets or sets the title of the HTML page.
public string PageTitle { get; set; }
Public Property PageTitle As String
HtmlSaveOptions options = new HtmlSaveOptions();
options.PageTitle = "Sales Report";
string pageTitle = options.PageTitle;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);