var instance = new GC.Spread.Sheets.Shapes.ShapeBase(); var value; // Type: any value = instance.setFormula(path, formula);
パラメータ
- path
- 数式の文字列を受け入れることができるパス。 「x」、「y」、「width」、「height」のいずれかに設定できます。
- formula
- 数式文字列。
var instance = new GC.Spread.Sheets.Shapes.ShapeBase(); var value; // Type: any value = instance.setFormula(path, formula);
sheet.name("Sheet1"); sheet.setValue(0, 1, 150); var shape1 = sheet.shapes.add("myShape1", GC.Spread.Sheets.Shapes.AutoShapeType.rectangle, 100, 100, 200, 200); shape1.setFormula("x", "=Sheet1!B1");