GraphicsPath.AddLine Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Ajoute un segment de ligne à cette GraphicsPath.
Surcharges
AddLine(Int32, Int32, Int32, Int32) |
Ajoute un segment de ligne à la figure actuelle. |
AddLine(Single, Single, Single, Single) |
Ajoute un segment de ligne à cette GraphicsPath. |
AddLine(Point, Point) |
Ajoute un segment de ligne à cette GraphicsPath. |
AddLine(PointF, PointF) |
Ajoute un segment de ligne à cette GraphicsPath. |
AddLine(Int32, Int32, Int32, Int32)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Ajoute un segment de ligne à la figure actuelle.
public:
void AddLine(int x1, int y1, int x2, int y2);
public void AddLine (int x1, int y1, int x2, int y2);
member this.AddLine : int * int * int * int -> unit
Public Sub AddLine (x1 As Integer, y1 As Integer, x2 As Integer, y2 As Integer)
Paramètres
- x1
- Int32
Coordonnée x du point de départ de la ligne.
- y1
- Int32
Coordonnée y du point de départ de la ligne.
- x2
- Int32
Coordonnée x du point de terminaison de la ligne.
- y2
- Int32
Coordonnée y du point de terminaison de la ligne.
Exemples
L’exemple de code suivant est conçu pour être utilisé avec Windows Forms et nécessite PaintEventArgse
, un objet d’événement OnPaint. Le code crée un chemin d’accès, ajoute trois lignes qui forment un triangle, puis dessine le chemin d’accès à l’écran.
private:
void AddLineExample( PaintEventArgs^ e )
{
//Create a path and add a symetrical triangle using AddLine.
GraphicsPath^ myPath = gcnew GraphicsPath;
myPath->AddLine( 30, 30, 60, 60 );
myPath->AddLine( 60, 60, 0, 60 );
myPath->AddLine( 0, 60, 30, 30 );
// Draw the path to the screen.
Pen^ myPen = gcnew Pen( Color::Black,2.0f );
e->Graphics->DrawPath( myPen, myPath );
}
private void AddLineExample(PaintEventArgs e)
{
//Create a path and add a symmetrical triangle using AddLine.
GraphicsPath myPath = new GraphicsPath();
myPath.AddLine(30, 30, 60, 60);
myPath.AddLine(60, 60, 0, 60);
myPath.AddLine(0, 60, 30, 30);
// Draw the path to the screen.
Pen myPen = new Pen(Color.Black, 2);
e.Graphics.DrawPath(myPen, myPath);
}
Public Sub AddLineExample(ByVal e As PaintEventArgs)
' Create a path and add a symmetrical triangle using AddLine.
Dim myPath As New GraphicsPath
myPath.AddLine(30, 30, 60, 60)
myPath.AddLine(60, 60, 0, 60)
myPath.AddLine(0, 60, 30, 30)
' Draw the path to the screen.
Dim myPen As New Pen(Color.Black, 2)
e.Graphics.DrawPath(myPen, myPath)
End Sub
Remarques
Cette méthode ajoute le segment de ligne défini par les points spécifiés à la fin de la figure actuelle. S’il existe des lignes ou des courbes précédentes dans le GraphicsPath, un segment de ligne est dessiné pour connecter le dernier point du chemin au premier point du nouveau segment de ligne.
S’applique à
AddLine(Single, Single, Single, Single)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Ajoute un segment de ligne à cette GraphicsPath.
public:
void AddLine(float x1, float y1, float x2, float y2);
public void AddLine (float x1, float y1, float x2, float y2);
member this.AddLine : single * single * single * single -> unit
Public Sub AddLine (x1 As Single, y1 As Single, x2 As Single, y2 As Single)
Paramètres
- x1
- Single
Coordonnée x du point de départ de la ligne.
- y1
- Single
Coordonnée y du point de départ de la ligne.
- x2
- Single
Coordonnée x du point de terminaison de la ligne.
- y2
- Single
Coordonnée y du point de terminaison de la ligne.
Exemples
Pour obtenir un exemple, consultez AddLine(Int32, Int32, Int32, Int32).
Remarques
Cette méthode ajoute le segment de ligne défini par les points spécifiés à la fin de cette GraphicsPath. S’il existe des lignes ou des courbes précédentes dans le GraphicsPath, un segment de ligne est dessiné pour connecter le dernier point du chemin au premier point du nouveau segment de ligne.
S’applique à
AddLine(Point, Point)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Ajoute un segment de ligne à cette GraphicsPath.
public:
void AddLine(System::Drawing::Point pt1, System::Drawing::Point pt2);
public void AddLine (System.Drawing.Point pt1, System.Drawing.Point pt2);
member this.AddLine : System.Drawing.Point * System.Drawing.Point -> unit
Public Sub AddLine (pt1 As Point, pt2 As Point)
Paramètres
Exemples
Pour obtenir un exemple, consultez AddLine(Int32, Int32, Int32, Int32).
Remarques
Cette méthode ajoute le segment de ligne défini par les points spécifiés à la fin de cette GraphicsPath. S’il existe des lignes ou des courbes précédentes dans le GraphicsPath, un segment de ligne est dessiné pour connecter le dernier point du chemin au premier point du nouveau segment de ligne.
S’applique à
AddLine(PointF, PointF)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Ajoute un segment de ligne à cette GraphicsPath.
public:
void AddLine(System::Drawing::PointF pt1, System::Drawing::PointF pt2);
public void AddLine (System.Drawing.PointF pt1, System.Drawing.PointF pt2);
member this.AddLine : System.Drawing.PointF * System.Drawing.PointF -> unit
Public Sub AddLine (pt1 As PointF, pt2 As PointF)
Paramètres
Exemples
Pour obtenir un exemple, consultez AddLine(Int32, Int32, Int32, Int32).
Remarques
Cette méthode ajoute le segment de ligne défini par les points spécifiés à la fin de cette GraphicsPath. S’il existe des lignes ou des courbes précédentes dans le GraphicsPath, un segment de ligne est dessiné pour connecter le dernier point du chemin au premier point du nouveau segment de ligne.