[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.IsWidthScalable

IsWidthScalable Property

IsWidthScalable

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.

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