var instance = new GC.Spread.Sheets.Shapes.ShapeCollection(sheet); var value; // Type: any value = instance.all();
function all() : any;
戻り値の型
すべてのシェイプ
var instance = new GC.Spread.Sheets.Shapes.ShapeCollection(sheet); var value; // Type: any value = instance.all();
function all() : any;
// 次のサンプルコードは、シェイプコレクションに含まれるすべてのシェイプを取得する方法を示します。 activeSheet.shapes.add("shape1", GC.Spread.Sheets.Shapes.AutoShapeType.heart, 100, 50, 100, 150); activeSheet.shapes.addConnector("shape2", GC.Spread.Sheets.Shapes.ConnectorType.elbow, 200, 50, 300, 200); var shapes = activeSheet.shapes.all();