Partager via


LineShape, constructeur (Int32, Int32, Int32, Int32)

Initialise une nouvelle instance de la classe LineShape spécifiant les coordonnées de la ligne.

Espace de noms :  Microsoft.VisualBasic.PowerPacks
Assembly :  Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntaxe

'Déclaration
Public Sub New ( _
    x1 As Integer, _
    y1 As Integer, _
    x2 As Integer, _
    y2 As Integer _
)
public LineShape(
    int x1,
    int y1,
    int x2,
    int y2
)
public:
LineShape(
    int x1, 
    int y1, 
    int x2, 
    int y2
)
new : 
        x1:int * 
        y1:int * 
        x2:int * 
        y2:int -> LineShape
public function LineShape(
    x1 : int, 
    y1 : int, 
    x2 : int, 
    y2 : int
)

Paramètres

  • x1
    Type : Int32

    Coordonnée X (horizontale) du point de début de la ligne.

  • y1
    Type : Int32

    Coordonnée Y (verticale) du point de début de la ligne.

  • x2
    Type : Int32

    Coordonnée X (horizontale) du point de fin de la ligne.

  • y2
    Type : Int32

    Coordonnée Y (verticale) du point de fin de la ligne.

Notes

Un LineShape ne peuvent pas être affichés directement sur un formulaire ou un contrôle conteneur ; Il doit être hébergé sur un ShapeContainer objet. Après avoir initialisé une LineShape, vous devrez définir son Parent propriété soit à une ShapeContainer ou à une nouvelle instance de ShapeContainer.

Exemples

L'exemple suivant initialise un ShapeContainer et un LineShape, définit les Parent propriété de la LineShape à la ShapeContaineret affiche une ligne diagonale avec les coordonnées spécifiées.

Dim canvas As New Microsoft.VisualBasic.PowerPacks.ShapeContainer
Dim line1 As New Microsoft.VisualBasic.PowerPacks.LineShape(0,
    0, 1000, 1000)
' Set the form as the parent of the ShapeContainer.
canvas.Parent = Me 
' Set the ShapeContainer as the parent of the LineShape.
line1.Parent = canvas
Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas = 
    new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
Microsoft.VisualBasic.PowerPacks.LineShape line1 = 
    new Microsoft.VisualBasic.PowerPacks.LineShape(0, 0, 1000, 1000);
// Set the form as the parent of the ShapeContainer.
canvas.Parent = this;
// Set the ShapeContainer as the parent of the LineShape.
line1.Parent = canvas;

Sécurité .NET Framework

Voir aussi

Référence

LineShape Classe

LineShape, surcharge

Microsoft.VisualBasic.PowerPacks, espace de noms

ShapeContainer

Shape

Autres ressources

Comment : dessiner des formes avec les contrôles OvalShape et RectangleShape (Visual Studio)

Comment : dessiner des lignes avec le contrôle LineShape (Visual Studio)

Introduction aux contrôles Line et Shape (Visual Studio)