Leer en inglés Editar

Compartir a través de


Pen.SetLineCap(LineCap, LineCap, DashCap) Method

Definition

Sets the values that determine the style of cap used to end lines drawn by this Pen.

C#
public void SetLineCap(System.Drawing.Drawing2D.LineCap startCap, System.Drawing.Drawing2D.LineCap endCap, System.Drawing.Drawing2D.DashCap dashCap);

Parameters

startCap
LineCap

A LineCap that represents the cap style to use at the beginning of lines drawn with this Pen.

endCap
LineCap

A LineCap that represents the cap style to use at the end of lines drawn with this Pen.

dashCap
DashCap

A LineCap that represents the cap style to use at the beginning or end of dashed lines drawn with this Pen.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code creates a Pen and sets it to draw arrow anchor caps at the beginning of lines:

C#
public void SetLineCap_Example(PaintEventArgs e)
{
             
    // Create a Pen object with a dash pattern.
    Pen capPen = new Pen(Color.Black, 5);
    capPen.DashStyle = DashStyle.Dash;
             
    // Set the start and end caps for capPen.
    capPen.SetLineCap(LineCap.ArrowAnchor, LineCap.Flat, DashCap.Flat);
             
    // Draw a line with capPen.
    e.Graphics.DrawLine(capPen, 10, 10, 200, 10);
}

Applies to

Producto Versiones
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10