SpreadJS製品ヘルプ
all メソッド
GC.Spread.Sheets.Shapes 名前空間 > GroupShape タイプ : all メソッド
グループシェイプのすべてのシェイプを取得します。
シンタックス
var instance = new GC.Spread.Sheets.Shapes.GroupShape(worksheet, name);
var value; // Type: any
value = instance.all();
function all() : any;

戻り値の型

すべてのシェイプ
使用例
// 次のサンプルコードは、グループシェイプに含まれるすべてのシェイプを取得する方法を示します。
var shape1 = sheet.shapes.add("myShape1", GC.Spread.Sheets.Shapes.AutoShapeType.rectangle, 62 * 9, 0, 200, 200);
var shape2 = sheet.shapes.add("myShape2", GC.Spread.Sheets.Shapes.AutoShapeType.rectangle, 20, 20, 200, 200);
var groupShape = sheet.shapes.group([shape1, shape2]);
var shapes = groupShape.all();
関連トピック

参照

GroupShape タイプ