[]
        
(Showing Draft Content)

GC.Spread.Sheets.Point

クラス: Point

Spread.Sheets.Point

Table of contents

コンストラクタ

メソッド

コンストラクタ

constructor

new Point(x, y)

2次元空間における<i>x</i>座標と<i>y</i>座標のペアを表します。

実例

// 次のサンプルコードは、フローティングオブジェクトを作成します。
var customFloatingObject = new GC.Spread.Sheets.FloatingObjects.FloatingObject("f1");
customFloatingObject.x(10);
customFloatingObject.y(10);
customFloatingObject.width(60);
customFloatingObject.height(64);
var btn = document.createElement('button');
btn.style.width = "60px";
btn.style.height = "30px";
btn.innerText = "button";
customFloatingObject.content(btn);
activeSheet.floatingObjects.add(customFloatingObject);

パラメータ

名前 説明
x number x座標。
y number y座標。

メソッド

clone

clone(): Point

現在のポイントから新しいポイントをクローンします。

戻り値

Point

クローンされたオブジェクト。