DeleteShape

ShapeCollection.DeleteShape method

Eine Form löschen. Wenn sich die Form in der Gruppe befindet oder eine Kommentarform ist, wird sie nicht gelöscht.

public void DeleteShape(Shape shape)
ParameterTypBeschreibung
shapeShape

Beispiele


[C#]
// erste Form hinzufügen
Shape firstShape = shapes.AddRectangle(2, 0, 2, 0, 50, 50);
// zweite Form hinzufügen
Shape secondShape = shapes.AddRectangle(6, 0, 2, 0, 30, 30);
//löschen
shapes.DeleteShape(firstShape);

Siehe auch