var instance = new GC.Spread.Sheets.Shapes.GroupShape(worksheet, name); var value; // Type: any value = instance.setFormula(path, formula);
パラメータ
- path
- 数式の文字列を受け入れることができるパス。 「x」、「y」、「width」、「height」、「rotate」のいずれかに設定できます。
- formula
- 数式文字列。
var instance = new GC.Spread.Sheets.Shapes.GroupShape(worksheet, name); var value; // Type: any value = instance.setFormula(path, formula);
sheet.name("Sheet1"); sheet.setValue(0, 1, 30); 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 shape = sheet.shapes.group([shape1, shape2]); shape.setFormula("rotate", "=Sheet1!B1");