Skip to main content

GraphicsCache.DrawImage(Image, Int32, Int32, Rectangle, Boolean) Method

Draws the specified Image portion at the specific coordinates and with the specified size.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public void DrawImage(
    Image image,
    int x,
    int y,
    Rectangle srcRect,
    bool enabled
)

Parameters

Name Type Description
image Image

An Image to draw.

x Int32

An Int32 value that is the x-coordinate of the image upper-left corner.

y Int32

An Int32 value that is the y-coordinate of the image upper-left corner.

srcRect Rectangle

A Rectangle structure that specifies the image portion to be drawn.

enabled Boolean

true if the image should be painted as is; false to draw a grayed-out “disabled” image.

See Also