[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.IsFullPathLink

IsFullPathLink Property

Gets or sets whether full path links are used in exported HTML.

This property applies only when exporting to an HTML file. The default value is false.

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