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 : Int32Coordonnée X (horizontale) du point de début de la ligne.
y1
Type : Int32Coordonnée Y (verticale) du point de début de la ligne.
x2
Type : Int32Coordonnée X (horizontale) du point de fin de la ligne.
y2
Type : Int32Coordonné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
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualBasic.PowerPacks, espace de noms
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)