IShapeCollection

Übersicht über die

IShapeCollection ist eine Schnittstelle in Aspose.Slides FOSS für Java.

Darstellt eine Sammlung von Formen.

Eigenschaften

Name der PersonTyp derZugang zu den InformationenBeschreibung
parentGroupIGroupShapeLesen Sie .Erhält die IGroupShape, die diese Sammlung enthält oder null wenn keine

Methoden und Verfahren

UnterzeichnungBeschreibung
getParentGroup()IGroupShapeErhält die Gruppenstillage für diese Sammlung, oder {@code null} wenn dies
Die Sammlung gehört direkt zu einer Folie.
asICollection()List<IShape>Gibt diese Sammlung als nicht veränderbare {@link List}.
asIEnumerable()Iterable<IShape>Gibt diese Sammlung als {@link Iterable}.
get(index: int)IShapeErhält die Form am angegebenen Index.
size()intGibt die Anzahl der Formen in der Sammlung zurück.
addAutoShape(shapeType: ShapeType, x: double, y: double, width: double, height: double)IAutoShapeErstellt einen neuen AutoShape und fügt ihn der Sammlung hinzu.
addAutoShape(shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean)IAutoShapeErstellt einen neuen AutoShape und fügt ihn der Sammlung hinzu.
insertAutoShape(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double)IAutoShapeErstellt einen neuen AutoShape und fügt ihn in den angegebenen Index ein.
insertAutoShape(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean)IAutoShapeErstellt einen neuen AutoShape und fügt ihn in den angegebenen Index ein.
addConnector(shapeType: ShapeType, x: double, y: double, width: double, height: double)IConnectorEr fügt eine Verbindung zur Sammlung hinzu.
addConnector(shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean)IConnectorEr fügt eine Verbindung zur Sammlung hinzu.
insertConnector(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double)IConnectorErstellt einen Anschluss und fügt ihn an den angegebenen Index ein.
insertConnector(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean)IConnectorErstellt einen Anschluss und fügt ihn an den angegebenen Index ein.
addPictureFrame(shapeType: ShapeType, x: double, y: double, width: double, height: double, image: IPPImage)IPictureFrameEr fügt dem Bild ein Bilderrahmen hinzu.
insertPictureFrame(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double, image: IPPImage)IPictureFrameErstellt einen Bildrahmen und fügt ihn in den angegebenen Index ein.
addTable(x: double, y: double, colWidths: double[], rowHeights: double[])ITableEr fügt eine Tabelle zur Sammlung hinzu.
insertTable(index: int, x: double, y: double, colWidths: double[], rowHeights: double[])ITableErstellt eine Tabelle und fügt sie in den angegebenen Index ein.
indexOf(shape: IShape)intGibt den Index der angegebenen Form zurück.
toArray()IShape[]Gibt alle Formen als Array zurück.
toArray(startIndex: int, count: int)IShape[]Gibt eine Reihe von Formen als Array zurück.
reorder(index: int, shape: IShape)Bewegt eine Form in die angegebene Position.
reorder(index: int, shapes: IShape[])Bewegt mehrere Formen in die angegebene Position.
removeAt(index: int)Entfernt die Form am angegebenen Index.
remove(shape: IShape)Entfernt die angegebene Form aus der Sammlung.
clear()Entfernt alle Formen aus der Sammlung.
 Deutsch