[]
Saves the page to a stream in SVG format.
public void SaveAsSvg(Stream stream, ViewState viewState, SaveAsImageOptions options = null, XmlWriterSettings xmlSettings = null)
Public Sub SaveAsSvg(stream As Stream, viewState As ViewState, Optional options As SaveAsImageOptions = Nothing, Optional xmlSettings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
ViewState | viewState | The document view state. |
SaveAsImageOptions | options | The SaveAsImageOptions object. |
XmlWriterSettings | xmlSettings | The output XML formatting settings. |
Saves the page to a stream in SVG format.
public void SaveAsSvg(Stream stream, SaveAsImageOptions options = null, XmlWriterSettings xmlSettings = null)
Public Sub SaveAsSvg(stream As Stream, Optional options As SaveAsImageOptions = Nothing, Optional xmlSettings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
SaveAsImageOptions | options | The SaveAsImageOptions object. |
XmlWriterSettings | xmlSettings | The output XML formatting settings. |
Saves the page to a file in SVG format.
public void SaveAsSvg(string filePath, ViewState viewState, SaveAsImageOptions options = null, XmlWriterSettings xmlSettings = null)
Public Sub SaveAsSvg(filePath As String, viewState As ViewState, Optional options As SaveAsImageOptions = Nothing, Optional xmlSettings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
string | filePath | The output file path. |
ViewState | viewState | The document view state. |
SaveAsImageOptions | options | The SaveAsImageOptions object. |
XmlWriterSettings | xmlSettings | The output XML formatting settings. |
Saves the page to a file in SVG format.
public void SaveAsSvg(string filePath, SaveAsImageOptions options = null, XmlWriterSettings xmlSettings = null)
Public Sub SaveAsSvg(filePath As String, Optional options As SaveAsImageOptions = Nothing, Optional xmlSettings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
string | filePath | The output file path. |
SaveAsImageOptions | options | The SaveAsImageOptions object. |
XmlWriterSettings | xmlSettings | The output XML formatting settings. |