SvgRenderer.Render

Render(IDevice, TimeSpan, params SVGDocument[])

Defines method for rendering multiple SVGDocuments into specific IDevice.

public override void Render(IDevice device, TimeSpan timeout, params SVGDocument[] sources)
ParameterTypeDescription
deviceIDeviceThe output device.
timeoutTimeSpanA TimeSpan that represents the number of milliseconds to wait, or a TimeSpan that represents -1 millisecond to wait indefinitely.
sourcesSVGDocument[]The SVG documents to render.

See Also


Render(IDevice, CancellationToken, params SVGDocument[])

Defines a method for rendering multiple SVGDocuments into a specific IDevice, using a cancellation token to request cancellation of the operation.

public override void Render(IDevice device, CancellationToken cancellationToken, 
    params SVGDocument[] sources)
ParameterTypeDescription
deviceIDeviceThe output device.
cancellationTokenCancellationTokenA cancellation token to observe while waiting for the task to complete.
sourcesSVGDocument[]The SVG documents to render.

See Also