Sprache

CustomLineCap Konstruktoren

Definition

Initialisiert eine neue Instanz der CustomLineCap Klasse mit der angegebenen Gliederung und Füllung.

Überlädt

Name Beschreibung
CustomLineCap(GraphicsPath, GraphicsPath)

Initialisiert eine neue Instanz der CustomLineCap Klasse mit der angegebenen Gliederung und Füllung.

CustomLineCap(GraphicsPath, GraphicsPath, LineCap)

Initialisiert eine neue Instanz der CustomLineCap Klasse aus der angegebenen vorhandenen LineCap Enumeration mit der angegebenen Gliederung und Füllung.

CustomLineCap(GraphicsPath, GraphicsPath, LineCap, Single)

Initialisiert eine neue Instanz der CustomLineCap Klasse aus der angegebenen vorhandenen LineCap Enumeration mit der angegebenen Gliederung, Füllung und Menge.

CustomLineCap(GraphicsPath, GraphicsPath)

Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs

Initialisiert eine neue Instanz der CustomLineCap Klasse mit der angegebenen Gliederung und Füllung.

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)

Parameter

fillPath
GraphicsPath

Ein GraphicsPath Objekt, das die Füllung für die benutzerdefinierte Großbuchstaben definiert.

strokePath
GraphicsPath

Ein GraphicsPath Objekt, das die Kontur der benutzerdefinierten Kappe definiert.

Beispiele

Im folgenden Beispiel wird die Verwendung des CustomLineCap Konstruktors veranschaulicht. Zum Ausführen dieses Beispiels fügen Sie den Code in ein Windows Form-Formular ein. Behandeln Sie das Ereignis des Formulars Paint und den Aufruf DrawCaps aus der Ereignisbehandlungsmethode des Formulars Paint , und übergeben Sie es als ePaintEventArgs.


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

Hinweise

CustomLineCap verwendet einen Füllmodus von "Wicklung" unabhängig vom für den Vorgang angegebenen Füllmodus.

Die fillPath Parameter können strokePath nicht gleichzeitig verwendet werden. Ein Parameter muss ein NULL-Wert übergeben werden. Wenn kein Parameter an einen Nullwert übergeben wird, fillPath wird er ignoriert. Wenn strokePath ja null, fillPath sollte die negative Y-Achse abgefangen werden.

Gilt für:

CustomLineCap(GraphicsPath, GraphicsPath, LineCap)

Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs

Initialisiert eine neue Instanz der CustomLineCap Klasse aus der angegebenen vorhandenen LineCap Enumeration mit der angegebenen Gliederung und Füllung.

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)

Parameter

fillPath
GraphicsPath

Ein GraphicsPath Objekt, das die Füllung für die benutzerdefinierte Großbuchstaben definiert.

strokePath
GraphicsPath

Ein GraphicsPath Objekt, das die Kontur der benutzerdefinierten Kappe definiert.

baseCap
LineCap

Die Linienkappe, aus der die benutzerdefinierte Großbuchstaben erstellt werden sollen.

Hinweise

CustomLineCap verwendet einen Füllmodus von "Wicklung" unabhängig vom für den Vorgang angegebenen Füllmodus.

Die fillPath Parameter können strokePath nicht gleichzeitig verwendet werden. Ein Parameter muss ein NULL-Wert übergeben werden. Wenn kein Parameter an einen Nullwert übergeben wird, fillPath wird er ignoriert. Wenn strokePath ja null, fillPath sollte die negative Y-Achse abgefangen werden.

Gilt für:

CustomLineCap(GraphicsPath, GraphicsPath, LineCap, Single)

Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs
Quelle:
CustomLineCap.cs

Initialisiert eine neue Instanz der CustomLineCap Klasse aus der angegebenen vorhandenen LineCap Enumeration mit der angegebenen Gliederung, Füllung und Menge.

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)

Parameter

fillPath
GraphicsPath

Ein GraphicsPath Objekt, das die Füllung für die benutzerdefinierte Großbuchstaben definiert.

strokePath
GraphicsPath

Ein GraphicsPath Objekt, das die Kontur der benutzerdefinierten Kappe definiert.

baseCap
LineCap

Die Linienkappe, aus der die benutzerdefinierte Großbuchstaben erstellt werden sollen.

baseInset
Single

Der Abstand zwischen der Kappe und der Linie.

Hinweise

CustomLineCap verwendet einen Füllmodus von "Wicklung" unabhängig vom für den Vorgang angegebenen Füllmodus.

Die fillPath Parameter können strokePath nicht gleichzeitig verwendet werden. Ein Parameter muss ein NULL-Wert übergeben werden. Wenn kein Parameter an einen Nullwert übergeben wird, fillPath wird er ignoriert. Wenn strokePath ja null, fillPath sollte die negative Y-Achse abgefangen werden.

Gilt für: