Draws the specified Image at the specified location and with the specified ImageSettings

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public void DrawImage(
	Image image,
	ImageSettings settings,
	Rectangle bounds,
	Graphics graphics
)
Visual Basic
Public Sub DrawImage ( 
	image As Image,
	settings As ImageSettings,
	bounds As Rectangle,
	graphics As Graphics
)
Visual C++
public:
virtual void DrawImage(
	Image^ image, 
	ImageSettings^ settings, 
	Rectangle bounds, 
	Graphics^ graphics
) sealed
F#
abstract DrawImage : 
        image : Image * 
        settings : ImageSettings * 
        bounds : Rectangle * 
        graphics : Graphics -> unit 
override DrawImage : 
        image : Image * 
        settings : ImageSettings * 
        bounds : Rectangle * 
        graphics : Graphics -> unit 

Parameters

image
Type: System.Drawing..::..Image
The Image to draw.
settings
Type: Dapfor.Net.Ui..::..ImageSettings
The ImageSettings specifies the parameters, indicating how the Image should be painted.
bounds
Type: System.Drawing..::..Rectangle
Specifies the location and size of the drawn image.
graphics
Type: System.Drawing..::..Graphics
The graphics.

Implements

IRender..::..DrawImage(Image, ImageSettings, Rectangle, Graphics)

See Also