Renderer-1.Render
Contents
[
Hide
]Render(IDevice, TSource)
Defines method for rendering TSource into specified IDevice.
public void Render(IDevice device, TSource source)
| Parameter | Type | Description |
|---|---|---|
| device | IDevice | The output device. |
| source | TSource | The source to render. |
See Also
- interface IDevice
- class Renderer<TSource>
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Render(IDevice, TSource, TimeSpan)
Defines method for rendering TSource into specified IDevice.
public void Render(IDevice device, TSource source, TimeSpan timeout)
| Parameter | Type | Description |
|---|---|---|
| device | IDevice | The output device. |
| source | TSource | The source to render. |
| timeout | TimeSpan | A TimeSpan that represents the number of milliseconds to wait, or a TimeSpan that represents -1 millisecond to wait indefinitely. |
See Also
- interface IDevice
- class Renderer<TSource>
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Render(IDevice, TSource, int)
Defines method for rendering TSource into specified IDevice.
public void Render(IDevice device, TSource source, int timeout)
| Parameter | Type | Description |
|---|---|---|
| device | IDevice | The output device. |
| source | TSource | The source to render. |
| timeout | Int32 | A number of milliseconds that represents the number of milliseconds to wait, or -1 millisecond to wait indefinitely. |
See Also
- interface IDevice
- class Renderer<TSource>
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Render(IDevice, params TSource[])
Defines method for rendering multiple TSources into specific IDevice.
public void Render(IDevice device, params TSource[] sources)
| Parameter | Type | Description |
|---|---|---|
| device | IDevice | The output device. |
| sources | TSource[] | The sources to render. |
See Also
- interface IDevice
- class Renderer<TSource>
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Render(IDevice, int, params TSource[])
Defines method for rendering multiple TSources into specific IDevice.
public void Render(IDevice device, int timeout, params TSource[] sources)
| Parameter | Type | Description |
|---|---|---|
| device | IDevice | The output device. |
| timeout | Int32 | A number of milliseconds that represents the number of milliseconds to wait, or -1 millisecond to wait indefinitely. |
| sources | TSource[] | The sources to render. |
See Also
- interface IDevice
- class Renderer<TSource>
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Render(IDevice, TimeSpan, params TSource[])
Defines method for rendering multiple TSources into specific IDevice.
public abstract void Render(IDevice device, TimeSpan timeout, params TSource[] sources)
| Parameter | Type | Description |
|---|---|---|
| device | IDevice | The output device. |
| timeout | TimeSpan | A TimeSpan that represents the number of milliseconds to wait, or a TimeSpan that represents -1 millisecond to wait indefinitely. |
| sources | TSource[] | The sources to render. |
See Also
- interface IDevice
- class Renderer<TSource>
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Render(IDevice, CancellationToken, params TSource[])
Defines a method for rendering multiple TSources into a specific IDevice, using a cancellation token to request cancellation of the operation.
public abstract void Render(IDevice device, CancellationToken cancellationToken,
params TSource[] sources)
| Parameter | Type | Description |
|---|---|---|
| device | IDevice | The output device. |
| cancellationToken | CancellationToken | A CancellationToken to observe while waiting for the task to complete. |
| sources | TSource[] | The sources to render. |
See Also
- interface IDevice
- class Renderer<TSource>
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG