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

パラメータ

path
数式の文字列を受け入れることができるパス。 「x」、「y」、「width」、「height」、「rotate」のいずれかに設定できます。

戻り値の型

パスによってシェイプから数式の文字列を返します。
使用例
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");
shape.getFormula("rotate");//「=Sheet1!B1」を返します
関連トピック

参照

GroupShape タイプ