[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.ExportGridlines

ExportGridlines Property

ExportGridlines

Gets or sets whether gridlines are exported when saving to HTML.

The default value is false.

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