SvgRenderingContextSave Method (StringBuilder, String)
|
Save the SVG content to a StringBuilder. If
image handing has been specified as relative files then these will
be saved too. For relative files a path to a dummy SVG output file
is required.
Namespace: WebSupergoo.WordGlue4.Rendering
Assembly: WordGlue4 (in WordGlue4.dll)
Version: 4.1.0.0 (4.1.0.0)
Syntax
public void Save(
StringBuilder svg,
string path
)
Public Sub Save (
svg As StringBuilder,
path As String
)
member Save :
svg : StringBuilder *
path : string -> unit
Parameters
- svg
- Type: System.TextStringBuilder
The StringBuilder to which the SVG content will be written.
- path
- Type: SystemString
A destination path for an SVG file, used to determine where to save
relative images. If you are not using ImageHandling.RelativeFiles
then you can pass null for this parameter.
See Also