[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.AttachedFilesUrlPrefix

AttachedFilesUrlPrefix Property

AttachedFilesUrlPrefix

Gets or sets the URL prefix of attached files, such as images, in the HTML file.

Declaration
public string AttachedFilesUrlPrefix { get; set; }
Public Property AttachedFilesUrlPrefix As String
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.AttachedFilesUrlPrefix = "resources/";
string urlPrefix = options.AttachedFilesUrlPrefix;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);