CustomLineCap Constructores

Definición

Inicializa una nueva instancia de la clase CustomLineCap con el contorno y el relleno especificados.

Sobrecargas

CustomLineCap(GraphicsPath, GraphicsPath)

Inicializa una nueva instancia de la clase CustomLineCap con el contorno y el relleno especificados.

CustomLineCap(GraphicsPath, GraphicsPath, LineCap)

Inicializa una nueva instancia de la clase CustomLineCap de la enumeración LineCap existente especificada, con el contorno y el relleno especificados.

CustomLineCap(GraphicsPath, GraphicsPath, LineCap, Single)

Inicializa una nueva instancia de la clase CustomLineCap de la enumeración LineCap existente especificada, con el contorno, el relleno y el insertado especificados.

CustomLineCap(GraphicsPath, GraphicsPath)

Source:
CustomLineCap.cs
Source:
CustomLineCap.cs
Source:
CustomLineCap.cs

Inicializa una nueva instancia de la clase CustomLineCap con el contorno y el relleno especificados.

public:
 CustomLineCap(System::Drawing::Drawing2D::GraphicsPath ^ fillPath, System::Drawing::Drawing2D::GraphicsPath ^ strokePath);
public CustomLineCap (System.Drawing.Drawing2D.GraphicsPath fillPath, System.Drawing.Drawing2D.GraphicsPath strokePath);
public CustomLineCap (System.Drawing.Drawing2D.GraphicsPath? fillPath, System.Drawing.Drawing2D.GraphicsPath? strokePath);
new System.Drawing.Drawing2D.CustomLineCap : System.Drawing.Drawing2D.GraphicsPath * System.Drawing.Drawing2D.GraphicsPath -> System.Drawing.Drawing2D.CustomLineCap
Public Sub New (fillPath As GraphicsPath, strokePath As GraphicsPath)

Parámetros

fillPath
GraphicsPath

Objeto GraphicsPath que define el relleno del extremo personalizado.

strokePath
GraphicsPath

Objeto GraphicsPath que define el contorno del extremo personalizado.

Ejemplos

En el ejemplo siguiente se muestra cómo usar el CustomLineCap constructor . Para ejecutar este ejemplo, pegue el código en un formulario Windows Forms. Controle el evento del Paint formulario y llame DrawCaps desde el método de control de eventos del Paint formulario, pasando e como PaintEventArgs.


protected void DrawCaps(PaintEventArgs e)
{
    GraphicsPath hPath = new GraphicsPath();

    // Create the outline for our custom end cap.
    hPath.AddLine(new Point(0, 0), new Point(0, 5));
    hPath.AddLine(new Point(0, 5), new Point(5, 1));
    hPath.AddLine(new Point(5, 1), new Point(3, 1));

    // Construct the hook-shaped end cap.
    CustomLineCap HookCap = new CustomLineCap(null, hPath);

    // Set the start cap and end cap of the HookCap to be rounded.
    HookCap.SetStrokeCaps(LineCap.Round, LineCap.Round);

    // Create a pen and set end custom start and end
    // caps to the hook cap.
    Pen customCapPen = new Pen(Color.Black, 5);
    customCapPen.CustomStartCap = HookCap;
    customCapPen.CustomEndCap = HookCap;

    // Create a second pen using the start and end caps from
    // the hook cap.
    Pen capPen = new Pen(Color.Red, 10);
    LineCap startCap;
    LineCap endCap;
    HookCap.GetStrokeCaps(out startCap, out endCap);
    capPen.StartCap = startCap;
    capPen.EndCap = endCap;

    // Create a line to draw.
    Point[] points = { new Point(100, 100), new Point(200, 50), 
        new Point(250, 300) };

    // Draw the lines.
    e.Graphics.DrawLines(capPen, points);
    e.Graphics.DrawLines(customCapPen, points);
}
Protected Sub DrawCaps(ByVal e As PaintEventArgs)
    Dim hPath As New GraphicsPath()

    ' Create the outline for our custom end cap.
    hPath.AddLine(New Point(0, 0), New Point(0, 5))
    hPath.AddLine(New Point(0, 5), New Point(5, 1))
    hPath.AddLine(New Point(5, 1), New Point(3, 1))

    ' Construct the hook-shaped end cap.
    Dim HookCap As New CustomLineCap(Nothing, hPath)

    ' Set the start cap and end cap of the HookCap to be rounded.
    HookCap.SetStrokeCaps(LineCap.Round, LineCap.Round)

    ' Create a pen and set end custom start and end
    ' caps to the hook cap.
    Dim customCapPen As New Pen(Color.Black, 5)
    customCapPen.CustomStartCap = HookCap
    customCapPen.CustomEndCap = HookCap

    ' Create a second pen using the start and end caps from
    ' the hook cap.
    Dim capPen As New Pen(Color.Red, 10)
    Dim startCap As LineCap
    Dim endCap As LineCap
    HookCap.GetStrokeCaps(startCap, endCap)
    capPen.StartCap = startCap
    capPen.EndCap = endCap

    ' Create a line to draw.
    Dim points As Point() = {New Point(100, 100), New Point(200, 50), _
        New Point(250, 300)}

    ' Draw the lines.
    e.Graphics.DrawLines(capPen, points)
    e.Graphics.DrawLines(customCapPen, points)

End Sub

Comentarios

CustomLineCap usa un modo de relleno de "devanado" independientemente del modo de relleno especificado para la operación.

Los fillPath parámetros y strokePath no se pueden usar al mismo tiempo. Un parámetro debe pasarse un valor NULL. Si ninguno de los parámetros se pasa a un valor NULL, fillPath se omitirá. Si strokePath es null, fillPath debe interceptar el eje Y negativo.

Se aplica a

CustomLineCap(GraphicsPath, GraphicsPath, LineCap)

Source:
CustomLineCap.cs
Source:
CustomLineCap.cs
Source:
CustomLineCap.cs

Inicializa una nueva instancia de la clase CustomLineCap de la enumeración LineCap existente especificada, con el contorno y el relleno especificados.

public:
 CustomLineCap(System::Drawing::Drawing2D::GraphicsPath ^ fillPath, System::Drawing::Drawing2D::GraphicsPath ^ strokePath, System::Drawing::Drawing2D::LineCap baseCap);
public CustomLineCap (System.Drawing.Drawing2D.GraphicsPath fillPath, System.Drawing.Drawing2D.GraphicsPath strokePath, System.Drawing.Drawing2D.LineCap baseCap);
public CustomLineCap (System.Drawing.Drawing2D.GraphicsPath? fillPath, System.Drawing.Drawing2D.GraphicsPath? strokePath, System.Drawing.Drawing2D.LineCap baseCap);
new System.Drawing.Drawing2D.CustomLineCap : System.Drawing.Drawing2D.GraphicsPath * System.Drawing.Drawing2D.GraphicsPath * System.Drawing.Drawing2D.LineCap -> System.Drawing.Drawing2D.CustomLineCap
Public Sub New (fillPath As GraphicsPath, strokePath As GraphicsPath, baseCap As LineCap)

Parámetros

fillPath
GraphicsPath

Objeto GraphicsPath que define el relleno del extremo personalizado.

strokePath
GraphicsPath

Objeto GraphicsPath que define el contorno del extremo personalizado.

baseCap
LineCap

Extremo de línea a partir del cual se va a crear el extremo de línea personalizado.

Comentarios

CustomLineCap usa un modo de relleno de "devanado" independientemente del modo de relleno especificado para la operación.

Los fillPath parámetros y strokePath no se pueden usar al mismo tiempo. Un parámetro debe pasarse un valor NULL. Si ninguno de los parámetros se pasa a un valor NULL, fillPath se omitirá. Si strokePath es null, fillPath debe interceptar el eje Y negativo.

Se aplica a

CustomLineCap(GraphicsPath, GraphicsPath, LineCap, Single)

Source:
CustomLineCap.cs
Source:
CustomLineCap.cs
Source:
CustomLineCap.cs

Inicializa una nueva instancia de la clase CustomLineCap de la enumeración LineCap existente especificada, con el contorno, el relleno y el insertado especificados.

public:
 CustomLineCap(System::Drawing::Drawing2D::GraphicsPath ^ fillPath, System::Drawing::Drawing2D::GraphicsPath ^ strokePath, System::Drawing::Drawing2D::LineCap baseCap, float baseInset);
public CustomLineCap (System.Drawing.Drawing2D.GraphicsPath fillPath, System.Drawing.Drawing2D.GraphicsPath strokePath, System.Drawing.Drawing2D.LineCap baseCap, float baseInset);
public CustomLineCap (System.Drawing.Drawing2D.GraphicsPath? fillPath, System.Drawing.Drawing2D.GraphicsPath? strokePath, System.Drawing.Drawing2D.LineCap baseCap, float baseInset);
new System.Drawing.Drawing2D.CustomLineCap : System.Drawing.Drawing2D.GraphicsPath * System.Drawing.Drawing2D.GraphicsPath * System.Drawing.Drawing2D.LineCap * single -> System.Drawing.Drawing2D.CustomLineCap
Public Sub New (fillPath As GraphicsPath, strokePath As GraphicsPath, baseCap As LineCap, baseInset As Single)

Parámetros

fillPath
GraphicsPath

Objeto GraphicsPath que define el relleno del extremo personalizado.

strokePath
GraphicsPath

Objeto GraphicsPath que define el contorno del extremo personalizado.

baseCap
LineCap

Extremo de línea a partir del cual se va a crear el extremo de línea personalizado.

baseInset
Single

Distancia entre el extremo y la línea.

Comentarios

CustomLineCap usa un modo de relleno de "devanado" independientemente del modo de relleno especificado para la operación.

Los fillPath parámetros y strokePath no se pueden usar al mismo tiempo. Un parámetro debe pasarse un valor NULL. Si ninguno de los parámetros se pasa a un valor NULL, fillPath se omitirá. Si strokePath es null, fillPath debe interceptar el eje Y negativo.

Se aplica a