LineShape, constructeur (Int32, Int32, Int32, Int32)
Initialise une nouvelle instance de la classe d'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 : System.Int32
La coordonnée horizontale () X du point de départ de la ligne.
- y1
Type : System.Int32
La coordonnée d'O (vertical) du point de départ de la ligne.
- x2
Type : System.Int32
La coordonnée horizontale () X du point de fin de la ligne.
- y2
Type : System.Int32
La coordonnée d'O (vertical) du point de fin de la ligne.
Notes
LineShape ne peut pas être affiché directement sur un formulaire ou un contrôle conteneur ; elle doit être hébergée sur un objet d'ShapeContainer.Après avoir initialisiez LineShape, vous devrez définir sa propriété d'Parent à ShapeContainer existant ou à une nouvelle instance d'ShapeContainer.
Exemples
L'exemple suivant initialise ShapeContainer et LineShape, définit la propriété d'Parent d'LineShape à ShapeContainer, et 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, consultez 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)