[]
Gets or sets whether scalable units are used to describe column widths when exporting to HTML.
This option controls how column width information is written during HTML export. The default value is false.
public bool IsWidthScalable { get; set; }
Public Property IsWidthScalable As Boolean
HtmlSaveOptions options = new HtmlSaveOptions();
options.IsWidthScalable = true;
bool isWidthScalable = options.IsWidthScalable;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);