WebPlanner Programmer's Guide

GraphicsEx.DrawImage Method (Image, Rectangle, Rectangle)

See Also
 


Draws a portion of an image at the specified location and with the specified size.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Scheduling.Compact

 Syntax

C#  Copy Code

public void DrawImage (
    Image image,
    Rectangle dest,
    Rectangle src
)

Visual Basic  Copy Code

Public Sub DrawImage ( _
    image As Image, _
    dest As Rectangle, _
    src As Rectangle _
)

 Parameters

image
The .NET Image object to draw.
dest
A .NET Rectangle structure that specifies the location and size of the drawn image.
src
A .NET Rectangle structure that specifies the portion of the image that is to be drawn.

 See Also