Skip to main content

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

Draws a line connecting two Point structures.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public void DrawLine(
    int x1,
    int y1,
    int x2,
    int y2,
    Color color,
    int thickness
)

Parameters

Name Type Description
x1 Int32

The x-coordinate of the Point structure that represents the first point to connect.

y1 Int32

The y-coordinate of the Point structure that represents the first point to connect.

x2 Int32

The x-coordinate of the Point structure that represents the second point to connect.

y2 Int32

The y-coordinate of the Point structure that represents the second point to connect.

color Color

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

thickness Int32

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

See Also