形状から接続ポイントを取得
Contents
[
Hide
]
Aspose.Cellsはスプレッドシート内の形状を管理するための豊富な機能を提供します。形状を配置したり整列させるために形状の接続ポイントを取得することが必要な場合があります。その場合、形状のすべての接続ポイントが必要です。以下のコードは、形状の接続ポイントのリストを取得するために使用できます。Shape.GetConnectionPoints()関数が使用されています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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(); |