SpreadJS製品ヘルプ
setFormula メソッド
GC.Spread.Sheets.Shapes 名前空間 > GroupShape タイプ : setFormula メソッド
数式の文字列を受け入れることができるパス。 「x」、「y」、「width」、「height」、「rotate」のいずれかに設定できます。
数式文字列。
パスによってシェイプに数式の文字列を設定します。
シンタックス
var instance = new GC.Spread.Sheets.Shapes.GroupShape(worksheet, name);
var value; // Type: any
value = instance.setFormula(path, formula);
function setFormula( 
   path : string,
   formula : string
) : any;

パラメータ

path
数式の文字列を受け入れることができるパス。 「x」、「y」、「width」、「height」、「rotate」のいずれかに設定できます。
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");
関連トピック

参照

GroupShape タイプ