var instance = new GC.Spread.Sheets.Shapes.ConnectorShape(worksheet, name, connectorType, beginX, beginY, endX, endY); var value; // Type: ConnectorType value = instance.type();
function type() : ConnectorType;
戻り値の型
シェイプのコネクタータイプを返します。
var instance = new GC.Spread.Sheets.Shapes.ConnectorShape(worksheet, name, connectorType, beginX, beginY, endX, endY); var value; // Type: ConnectorType value = instance.type();
function type() : ConnectorType;
var shape = sheet.shapes.addConnector("myShape", GC.Spread.Sheets.Shapes.ConnectorType.straight, 220, 120, 300, 120); var shapeName = shape.type();