CustomLineCap Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci CustomLineCap třídy pomocí zadané osnovy a výplně.
Přetížení
CustomLineCap(GraphicsPath, GraphicsPath) |
Inicializuje novou instanci CustomLineCap třídy pomocí zadané osnovy a výplně. |
CustomLineCap(GraphicsPath, GraphicsPath, LineCap) |
Inicializuje novou instanci CustomLineCap třídy ze zadaného existujícího LineCap výčtu pomocí zadané osnovy a výplně. |
CustomLineCap(GraphicsPath, GraphicsPath, LineCap, Single) |
Inicializuje novou instanci CustomLineCap třídy ze zadaného existujícího LineCap výčtu pomocí zadané osnovy, výplně a inset. |
CustomLineCap(GraphicsPath, GraphicsPath)
- Zdroj:
- CustomLineCap.cs
- Zdroj:
- CustomLineCap.cs
- Zdroj:
- CustomLineCap.cs
Inicializuje novou instanci CustomLineCap třídy pomocí zadané osnovy a výplně.
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)
Parametry
- fillPath
- GraphicsPath
Objekt GraphicsPath , který definuje výplň pro vlastní horní mez.
- strokePath
- GraphicsPath
Objekt GraphicsPath , který definuje obrys vlastního limitu.
Příklady
Následující příklad ukazuje, jak použít CustomLineCap konstruktor. Chcete-li spustit tento příklad, vložte kód do formuláře Windows. Zpracování události formuláře Paint a volání DrawCaps
z metody zpracování událostí formuláře Paint , předání e
jako 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
Poznámky
CustomLineCap používá režim výplně "vinutí" bez ohledu na režim výplně zadaný pro operaci.
Parametry fillPath
a strokePath
nelze použít současně. Jeden parametr musí být předán hodnotě null. Pokud žádný parametr nepředá hodnotu null, fillPath
bude ignorován. Pokud strokePath
je null
, fillPath
měl by zachytit zápornou osu y.
Platí pro
CustomLineCap(GraphicsPath, GraphicsPath, LineCap)
- Zdroj:
- CustomLineCap.cs
- Zdroj:
- CustomLineCap.cs
- Zdroj:
- CustomLineCap.cs
Inicializuje novou instanci CustomLineCap třídy ze zadaného existujícího LineCap výčtu pomocí zadané osnovy a výplně.
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)
Parametry
- fillPath
- GraphicsPath
Objekt GraphicsPath , který definuje výplň pro vlastní horní mez.
- strokePath
- GraphicsPath
Objekt GraphicsPath , který definuje obrys vlastního limitu.
- baseCap
- LineCap
Horní čáry, ze které chcete vytvořit vlastní horní mez.
Poznámky
CustomLineCap používá režim výplně "vinutí" bez ohledu na režim výplně zadaný pro operaci.
Parametry fillPath
a strokePath
nelze použít současně. Jeden parametr musí být předán hodnotě null. Pokud žádný parametr nepředá hodnotu null, fillPath
bude ignorován. Pokud strokePath
je null
, fillPath
měl by zachytit zápornou osu y.
Platí pro
CustomLineCap(GraphicsPath, GraphicsPath, LineCap, Single)
- Zdroj:
- CustomLineCap.cs
- Zdroj:
- CustomLineCap.cs
- Zdroj:
- CustomLineCap.cs
Inicializuje novou instanci CustomLineCap třídy ze zadaného existujícího LineCap výčtu pomocí zadané osnovy, výplně a inset.
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)
Parametry
- fillPath
- GraphicsPath
Objekt GraphicsPath , který definuje výplň pro vlastní horní mez.
- strokePath
- GraphicsPath
Objekt GraphicsPath , který definuje obrys vlastního limitu.
- baseCap
- LineCap
Horní čáry, ze které chcete vytvořit vlastní horní mez.
- baseInset
- Single
Vzdálenost mezi čepicí a čárou.
Poznámky
CustomLineCap používá režim výplně "vinutí" bez ohledu na režim výplně zadaný pro operaci.
Parametry fillPath
a strokePath
nelze použít současně. Jeden parametr musí být předán hodnotě null. Pokud žádný parametr nepředá hodnotu null, fillPath
bude ignorován. Pokud strokePath
je null
, fillPath
měl by zachytit zápornou osu y.