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

パラメータ

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

戻り値の型

パスによってシェイプから数式の文字列を返します。
使用例
sheet.name("Sheet1");
sheet.setValue(0, 1, "red");
var myConnector = sheet.shapes.addConnector("myConnector", GC.Spread.Sheets.Shapes.ConnectorType.elbow, 50, 50, 200, 500);
myConnector.setFormula("style.line.color", "=Sheet1!B1");
myConnector.getFormula("style.line.color");//「=Sheet1!B1」を返します
関連トピック

参照

ConnectorShape タイプ