Partager via


ShapeCollection.AddRange, méthode

Ajoute un tableau d'objets d'Shape à ShapeCollection.

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

Syntaxe

'Déclaration
Public Sub AddRange ( _
    shapes As Shape() _
)
public void AddRange(
    Shape[] shapes
)
public:
void AddRange(
    array<Shape^>^ shapes
)
member AddRange : 
        shapes:Shape[] -> unit 
public function AddRange(
    shapes : Shape[]
)

Paramètres

Notes

Les objets d'Shape qui sont contenus dans la matrice d'shapes sont ajoutés à la fin de la collection.

Vous pouvez utiliser la méthode d'AddRange pour ajouter rapidement un groupe d'objets d'Shape à la collection.C'est plus rapide que manuellement chaque Shape ajoutant à la collection à l'aide de la méthode d'Add.

Pour supprimer Shape avoir ajouté précédemment, utilisez Remove, RemoveAt, ou la méthode d'Clear.

Remarques à l'attention des héritiers

En substituant AddRange dans une classe dérivée, assurez -vous d'appeler la méthode d'AddRange de classe de base pour garantir que les formes sont ajoutées à la collection.

Exemples

L'exemple suivant ajoute un groupe de contrôles d'OvalShape à ShapeCollection d'un formulaire.L'exemple requiert que vous avez un contrôle d'RectangleShape sur un formulaire.

Private Sub RectangleShape1_Click() Handles RectangleShape1.Click
    ' Create two oval shapes to add to the form.
    Dim oval1 As OvalShape = New OvalShape()
    Dim oval2 As OvalShape = New OvalShape()

    ' Set the size of the ovals.
    oval1.Size = New Size(100, 200)
    oval2.Size = oval1.Size

    ' Set the appropriate location of ovals.
    oval1.Location = New Point(10, 10)
    oval2.Location = New Point(oval1.Left + 10, oval1.Top + 10)

    ' Add the controls to the form by using the AddRange method.
    RectangleShape1.Parent.Shapes.AddRange(New Shape() {oval1, oval2})
End Sub
private void rectangleShape1_Click(System.Object sender, System.EventArgs e)
{
    // Create two oval shapes to add to the form.
    OvalShape oval1 = new OvalShape();
    OvalShape oval2 = new OvalShape();

    // Set the size of the ovals.
    oval1.Size = new Size(100, 200);
    oval2.Size = oval1.Size;

    // Set the appropriate location of ovals.
    oval1.Location = new Point(10, 10);
    oval2.Location = new Point(oval1.Left + 10, oval1.Top + 10);

    // Add the controls to the form by using the AddRange method.
    rectangleShape1.Parent.Shapes.AddRange(new Shape[] { oval1, oval2 });
}

Sécurité .NET Framework

Voir aussi

Référence

ShapeCollection Classe

Microsoft.VisualBasic.PowerPacks, espace de noms

Autres ressources

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

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

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