EditableDocumentSave Method (String, String) |
Saves this HTML document to the file on specified path, where HTML markup will be stored, and to the accompanying folder with resources,
which is located on specified path.
Namespace: GroupDocs.EditorAssembly: GroupDocs.Editor (in GroupDocs.Editor.dll) Version: 21.10.0.0
Syntaxpublic void Save(
string htmlFilePath,
string resourcesFolderPath
)
Public Sub Save (
htmlFilePath As String,
resourcesFolderPath As String
)
public:
void Save(
String^ htmlFilePath,
String^ resourcesFolderPath
)
member Save :
htmlFilePath : string *
resourcesFolderPath : string -> unit
Parameters
- htmlFilePath
- Type: SystemString
Full path to the file, where HTML markup will be stored. Cannot be NULL or empty.
File will be created or overwritten, if exists. - resourcesFolderPath
- Type: SystemString
Full path to the accompanying folder, where all related resources will be stored. If NULL or empty, folder will be created automatically in the same directory, where *.html file. If specified and not exists, will be created.
See Also