SVGDocument.Save

Save(Url)

Saves the document to local file specified by url. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + “_files”.

public void Save(Url url)
ParameterTypeDescription
urlUrlLocal URL to output file.

Exceptions

exceptioncondition
ArgumentExceptionRaised if the specified url is not a valid local file URL.

See Also


Save(string)

Saves the document to local file specified by path. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + “_files”.

public void Save(string path)
ParameterTypeDescription
pathStringLocal path to output file.

Exceptions

exceptioncondition
ArgumentExceptionRaised if the specified path is not a valid local file path.

See Also


Save(ResourceHandler)

Saves the document content and resources using the ResourceHandler.

public void Save(ResourceHandler resourceHandler)
ParameterTypeDescription
resourceHandlerResourceHandlerThe resource handler ResourceHandler.

See Also


Save(string, SVGSaveFormat)

Saves the document to local file specified by path. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + “_files”.

public void Save(string path, SVGSaveFormat saveFormat)
ParameterTypeDescription
pathStringLocal path to output file.
saveFormatSVGSaveFormatFormat in which document is saved.

Exceptions

exceptioncondition
ArgumentExceptionRaised if the specified path is not a valid local file path.

See Also


Save(ResourceHandler, SVGSaveFormat)

Saves the document content and resources using the ResourceHandler.

public void Save(ResourceHandler resourceHandler, SVGSaveFormat saveFormat)
ParameterTypeDescription
resourceHandlerResourceHandlerThe resource handler ResourceHandler.
saveFormatSVGSaveFormatFormat in which document is saved.

See Also


Save(string, SVGSaveOptions)

Saves the document to local file specified by path. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + “_files”.

public void Save(string path, SVGSaveOptions saveOptions)
ParameterTypeDescription
pathStringLocal path to output file.
saveOptionsSVGSaveOptionsSVG save options.

Exceptions

exceptioncondition
ArgumentExceptionRaised if the specified path is not a valid local file path.

See Also


Save(ResourceHandler, SVGSaveOptions)

Saves the document content and resources using the ResourceHandler.

public void Save(ResourceHandler resourceHandler, SVGSaveOptions saveOptions)
ParameterTypeDescription
resourceHandlerResourceHandlerThe resource handler ResourceHandler.
saveOptionsSVGSaveOptionsSVG save options.

See Also


Save(Url, SVGSaveFormat)

Saves the document to local file specified by url. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + “_files”.

public void Save(Url url, SVGSaveFormat saveFormat)
ParameterTypeDescription
urlUrlLocal URL to output file.
saveFormatSVGSaveFormatFormat in which document is saved.

Exceptions

exceptioncondition
ArgumentExceptionRaised if the specified url is not a valid local file URL.

See Also


Save(Url, SVGSaveOptions)

Saves the document to local file specified by url. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + “_files”.

public void Save(Url url, SVGSaveOptions saveOptions)
ParameterTypeDescription
urlUrlLocal URL to output file.
saveOptionsSVGSaveOptionsSVG save options.

Exceptions

exceptioncondition
ArgumentExceptionRaised if the specified url is not a valid local file URL.

See Also