SaveAsSvg(String,ViewState,OutputRange,SaveAsImageOptions,XmlWriterSettings) Method
In This Topic
Saves the document pages as images in SVG format, one page per output file.
The parameter is used as a .NET format string, with current page number (1-based) passed to it as the value to be formatted. Note that if does not contain a format item (such as "{0}"), all pages will be saved into the same file name, the last page overwriting everything else.
Syntax
'Declaration
Public Overloads Sub SaveAsSvg( _
ByVal As System.String, _
ByVal As ViewState, _
Optional ByVal As OutputRange, _
Optional ByVal As SaveAsImageOptions, _
Optional ByVal As System.Xml.XmlWriterSettings _
)
public void SaveAsSvg(
System.string ,
ViewState ,
OutputRange ,
SaveAsImageOptions ,
System.Xml.XmlWriterSettings
)
Parameters
- filePath
- The output file path.
- viewState
- The document view state.
- pageRange
- The range of pages that should be saved.
- options
- Options that allow customizing the output images.
- xmlSettings
- The output XML formatting settings.
See Also