Skip to main content

GraphicsCache.DrawRectangle(Int32, Int32, Int32, Int32, Color, Int32) Method

Draws a rectangle specified by a pair of coordinates, a width, and a height.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public void DrawRectangle(
    int x,
    int y,
    int width,
    int height,
    Color color,
    int thickness
)

Parameters

Name Type Description
x Int32

The x-coordinate of the upper-left corner of the rectangle to draw.

y Int32

The y-coordinate of the upper-left corner of the rectangle to draw.

width Int32

Width of the rectangle to draw.

height Int32

Height of the rectangle to draw.

color Color

A Color structure that indicates the color of the Pen used to draw the rectangle.

thickness Int32

A value indicating the width of the Pen used to draw the rectangle.

See Also