[]
Saves the current GcSvgDocument to a file in SVG format.
public void Save(string path, XmlWriterSettings settings = null)
Public Sub Save(path As String, Optional settings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
string | path | The output file path. |
XmlWriterSettings | settings | The output XML formatting settings. |
Saves the current GcSvgDocument to a Stream in SVG format.
public void Save(Stream stream, XmlWriterSettings settings = null)
Public Sub Save(stream As Stream, Optional settings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
XmlWriterSettings | settings | The output XML formatting settings. |
Saves the current GcSvgDocument to a StringBuilder in SVG format.
public void Save(StringBuilder sb, XmlWriterSettings settings = null)
Public Sub Save(sb As StringBuilder, Optional settings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
StringBuilder | sb | The output StringBuilder. |
XmlWriterSettings | settings | The output XML formatting settings. |
Saves the current GcSvgDocument to a TextWriter in SVG format.
public void Save(TextWriter tw, XmlWriterSettings settings = null)
Public Sub Save(tw As TextWriter, Optional settings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
TextWriter | tw | The output TextWriter. |
XmlWriterSettings | settings | The output XML formatting settings. |