VisualRender Method

TIBCO Spotfire 11.4 API Reference

Note: This API is now obsolete.

Renders the visual to the specified graphics context.

Namespace:  Spotfire.Dxp.Application
Assembly:  Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 51.0.16121.3915 (51.0.16121.3915)
Syntax

C#
[ObsoleteAttribute("Use Visual.RenderAsync(RenderResultSettings, VisualRenderSettings, CancellationToken) instead.")]
public void Render(
	Graphics graphics,
	Rectangle bounds
)

Parameters

graphics
Type: System.DrawingGraphics
The graphics context.
bounds
Type: System.DrawingRectangle
The rectangle to render to.
Examples

The following example shows how to render a visual to a png file.
C#
Visual visual = ...;
using (Bitmap image = new Bitmap(1024, 768))
{
    using (Graphics g = Graphics.FromImage(image))
    {
        visual.Render(g, new Rectangle(0, 0, image.Width, image.Height));
    }
    image.Save("C:\\image.png");
}
Version Information

Supported in: 7.11
Obsolete (compiler warning) in 11.4
Obsolete (compiler warning) in 11.3
Obsolete (compiler warning) in 11.2
Obsolete (compiler warning) in 11.1
Obsolete (compiler warning) in 11.0
Obsolete (compiler warning) in 10.10
See Also

Reference