Search
IGraphics.DrawImage Method (IImage, Double, Double)
See Also
 





Draws the specified image, using its original physical size, at the specified location.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void DrawImage (
    IImage image,
    double x,
    double y
)

Visual Basic  Copy Code

Sub DrawImage( _
    image As IImage, _
    x As Double, _
    y As Double _
)

 Parameters

image
A Microsoft.Maui.Graphics.IImage 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.

 See Also