Skip to main content

GraphicsCache.DrawLine(Pen, Point, Point) Method

Draws a line on the current painting surface 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(
    Pen pen,
    Point pt1,
    Point pt2
)

Parameters

Name Type Description
pen Pen

A Pen object specifying the Pen used to draw the line.

pt1 Point

A Point structure that represents the first point to connect.

pt2 Point

A Point structure that represents the second point to connect.

The following code snippets (auto-collected from DevExpress Examples) contain references to the DrawLine(Pen, Point, Point) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also