[]
• 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(): Point
現在のポイントから新しいポイントをクローンします。
クローンされたオブジェクト。