HtmlSaveOptionsFilesDirectorySrcPath Property |
Namespace:
GemBox.Spreadsheet
Assembly:
GemBox.Spreadsheet (in GemBox.Spreadsheet.dll) Version: 43.0.35.1106
Syntaxpublic string FilesDirectorySrcPath { get; set; }
Public Property FilesDirectorySrcPath As String
Get
Set
Property Value
Type:
String
The relative directory that will be used when referencing
ExcelPictures and
ExcelWorksheets files in the HTML.
Remarks
ExamplesFollowing code demonstrates how to export Excel file to HTML with specifying location where images will be saved.
ef.Save(
"Data.html",
new HtmlSaveOptions()
{
FilesDirectoryPath = Path.Combine("Art", "Images"),
FilesDirectorySrcPath = "Art/Images"
});
ef.Save(
"Data.html",
New HtmlSaveOptions() With
{
.FilesDirectoryPath = Path.Combine("Art", "Images"),
.FilesDirectorySrcPath = "Art/Images"
})
See Also