SpreadJS製品ヘルプ
group メソッド
GC.Spread.Sheets.Shapes 名前空間 > ShapeCollection タイプ : group メソッド
グループ化するシェイプ。
シェイプをグループ化します。
シンタックス
var instance = new GC.Spread.Sheets.Shapes.ShapeCollection(sheet);
var value; // Type: Shape
value = instance.group(shapes);
function group( 
   shapes : undefined
) : Shape;

パラメータ

shapes
グループ化するシェイプ。

戻り値の型

シェイプグループ。
使用例
//このサンプルはいくつかの図形をグループ化する方法を示します。
var shape1 = activeSheet.shapes.add("shape1", GC.Spread.Sheets.Shapes.AutoShapeType.heart, 100, 50, 100, 150);
var shape2 = activeSheet.shapes.addConnector("shape2", GC.Spread.Sheets.Shapes.ConnectorType.elbow, 200, 50, 300, 200);
var shapes = [shape1, shape2];
var groupShape = activeSheet.shapes.group(shapes)
関連トピック

参照

ShapeCollection タイプ