Verbinden Sie Punkte von der Form abrufen

Contents
[ ]

Aspose.Cells bietet umfangreiche Funktionen zur Verwaltung von Formen in der Tabellenkalkulation. Manchmal besteht die Notwendigkeit, die Verbindungspunkte einer Form zu erhalten, um die Formen an der entsprechenden Stelle auszurichten oder zu platzieren. Dazu werden alle Verbindungspunkte benötigt. Der folgende Code kann verwendet werden, um die Liste der Verbindungspunkte einer Form zu erhalten, wobei die Funktion Shape.GetConnectionPoints() verwendet wird.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// Instantiate a new Workbook.
Workbook workbook = new Workbook();
// Get the first worksheet in the book.
Worksheet worksheet = workbook.getWorksheets().get(0);
// Add a new textbox to the collection.
int textboxIndex = worksheet.getTextBoxes().add(2, 1, 160, 200);
// Access your text box which is also a shape object from shapes collection
Shape shape = workbook.getWorksheets().get(0).getShapes().get(0);
// Get all the connection points in this shape
zo[] ConnectionPoints = shape.getConnectionPoints();