シェイプから接続ポイントを取得する
Contents
[
Hide
]
Aspose.Cells は、スプレッドシートで形状を管理するための豊富な機能を提供します。図形を適切な場所に整列または配置するために、図形の接続ポイントを取得する必要がある場合があります。この目的のために、すべての接続ポイントが必要です。次のコードを使用して、形状の接続ポイントのリストを取得できます。Shape.ConnectionPoints財産。
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-.NET | |
// Instantiate a new Workbook. | |
Workbook workbook = new Workbook(); | |
// Get the first worksheet in the book. | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Add a new textbox to the collection. | |
int textboxIndex = worksheet.TextBoxes.Add(2, 1, 160, 200); | |
// Access your text box which is also a shape object from shapes collection | |
Shape shape = workbook.Worksheets[0].Shapes[0]; | |
// Get all the connection points in this shape | |
float[][] ConnectionPoints = shape.GetConnectionPoints(); | |
// Display all the shape points | |
foreach (float[] pt in ConnectionPoints) | |
{ | |
System.Console.WriteLine(string.Format("X = {0}, Y = {1}", pt[0], pt[1])); | |
} |