IShapeCollection
Übersicht über die
IShapeCollection ist eine Schnittstelle in Aspose.Slides FOSS für Java.
Darstellt eine Sammlung von Formen.
Eigenschaften
| Name der Person | Typ der | Zugang zu den Informationen | Beschreibung |
|---|---|---|---|
parentGroup | IGroupShape | Lesen Sie . | Erhält die IGroupShape, die diese Sammlung enthält oder null wenn keine |
Methoden und Verfahren
| Unterzeichnung | Beschreibung |
|---|---|
getParentGroup() → IGroupShape | Erhä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) → IShape | Erhält die Form am angegebenen Index. |
size() → int | Gibt die Anzahl der Formen in der Sammlung zurück. |
addAutoShape(shapeType: ShapeType, x: double, y: double, width: double, height: double) → IAutoShape | Erstellt einen neuen AutoShape und fügt ihn der Sammlung hinzu. |
addAutoShape(shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean) → IAutoShape | Erstellt einen neuen AutoShape und fügt ihn der Sammlung hinzu. |
insertAutoShape(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double) → IAutoShape | Erstellt 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) → IAutoShape | Erstellt einen neuen AutoShape und fügt ihn in den angegebenen Index ein. |
addConnector(shapeType: ShapeType, x: double, y: double, width: double, height: double) → IConnector | Er fügt eine Verbindung zur Sammlung hinzu. |
addConnector(shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean) → IConnector | Er fügt eine Verbindung zur Sammlung hinzu. |
insertConnector(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double) → IConnector | Erstellt 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) → IConnector | Erstellt einen Anschluss und fügt ihn an den angegebenen Index ein. |
addPictureFrame(shapeType: ShapeType, x: double, y: double, width: double, height: double, image: IPPImage) → IPictureFrame | Er fügt dem Bild ein Bilderrahmen hinzu. |
insertPictureFrame(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double, image: IPPImage) → IPictureFrame | Erstellt einen Bildrahmen und fügt ihn in den angegebenen Index ein. |
addTable(x: double, y: double, colWidths: double[], rowHeights: double[]) → ITable | Er fügt eine Tabelle zur Sammlung hinzu. |
insertTable(index: int, x: double, y: double, colWidths: double[], rowHeights: double[]) → ITable | Erstellt eine Tabelle und fügt sie in den angegebenen Index ein. |
indexOf(shape: IShape) → int | Gibt 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. |