Error processing SSI file
LEADTOOLS GDI/GDI+ (Leadtools.Drawing assembly)

Show in webframe

Create(Graphics) Method






Target GDI+ graphics object for the rendering. This cannot be null.
Creates a new rendering engine from a GDI+ Graphics.
Syntax
public static IRenderingEngine Create( 
   Graphics graphics
)
'Declaration
 
Public Overloads Shared Function Create( _
   ByVal graphics As Graphics _
) As IRenderingEngine
'Usage
 
Dim graphics As Graphics
Dim value As IRenderingEngine
 
value = RenderingEngineFactory.Create(graphics)
public:
static IRenderingEngine^ Create( 
   Graphics^ graphics
) 

Parameters

graphics
Target GDI+ graphics object for the rendering. This cannot be null.

Return Value

The newly created Leadtools.IRenderingEngine instance that is ready to be used.
Remarks

Use this method in your Windows Forms application to render an Leadtools.Svg.SvgDocument into any control. For example, you can use the Graphics object passed to the Control.Paint event of your form or control or the Graphics object created from a GDI image.

Leadtools.IRenderingEngine implements System.IDisposable, so it is recommended to wrap this method call in a "using" statement or call System.IDisposable.Dispose manually.

Example

For an example, refer to SvgDocument.Render.

Requirements

Target Platforms

See Also

Reference

RenderingEngineFactory Class
RenderingEngineFactory Members
Overload List

Error processing SSI file