Search
GdiGraphics.DrawImage Method (Image, Single, Single, RectangleF, GraphicsUnit)
See Also
 





Draws a portion of an image at a specified location.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void DrawImage (
    Image image,
    float x,
    float y,
    RectangleF srcRect,
    GraphicsUnit srcUnit
)

Visual Basic  Copy Code

Public Overridable Sub DrawImage( _
    image As Image, _
    x As Single, _
    y As Single, _
    srcRect As RectangleF, _
    srcUnit As GraphicsUnit _
)

 Parameters

image
A .NET Image object to draw.
x
The x-coordinate of the upper-left corner of the drawn image.
y
The y-coordinate of the upper-left corner of the drawn image.
srcRect
A .NET RectangleF structure that specifies the portion of the image object to draw.
srcUnit
Member of the .NET GraphicsUnit enumeration that specifies the units of measure used by the srcRect parameter.

 See Also