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)
Parameter | Type | Description |
---|
url | Url | Local URL to output file. |
Exceptions
exception | condition |
---|
ArgumentException | Raised 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)
Parameter | Type | Description |
---|
path | String | Local path to output file. |
Exceptions
exception | condition |
---|
ArgumentException | Raised if the specified path is not a valid local file path. |
See Also
Save(IOutputStorage)
Saves the document content and resources to the output storage.
public void Save(IOutputStorage outputStorage)
Parameter | Type | Description |
---|
outputStorage | IOutputStorage | The output storage IOutputStorage . |
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)
Parameter | Type | Description |
---|
path | String | Local path to output file. |
saveFormat | SVGSaveFormat | Format in which document is saved. |
Exceptions
exception | condition |
---|
ArgumentException | Raised if the specified path is not a valid local file path. |
See Also
Save(IOutputStorage, SVGSaveFormat)
Saves the document content and resources to the output storage.
public void Save(IOutputStorage outputStorage, SVGSaveFormat saveFormat)
Parameter | Type | Description |
---|
outputStorage | IOutputStorage | The output storage IOutputStorage . |
saveFormat | SVGSaveFormat | Format 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)
Parameter | Type | Description |
---|
path | String | Local path to output file. |
saveOptions | SVGSaveOptions | SVG save options. |
Exceptions
exception | condition |
---|
ArgumentException | Raised if the specified path is not a valid local file path. |
See Also
Save(IOutputStorage, SVGSaveOptions)
Saves the document content and resources to the output storage.
public void Save(IOutputStorage outputStorage, SVGSaveOptions saveOptions)
Parameter | Type | Description |
---|
outputStorage | IOutputStorage | The output storage IOutputStorage . |
saveOptions | SVGSaveOptions | SVG 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)
Parameter | Type | Description |
---|
url | Url | Local URL to output file. |
saveFormat | SVGSaveFormat | Format in which document is saved. |
Exceptions
exception | condition |
---|
ArgumentException | Raised 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)
Parameter | Type | Description |
---|
url | Url | Local URL to output file. |
saveOptions | SVGSaveOptions | SVG save options. |
Exceptions
exception | condition |
---|
ArgumentException | Raised if the specified url is not a valid local file URL. |
See Also