Javascript (Specification) | |
---|
function name(
: string
) : any; |
パラメータ
- value
- フローティングオブジェクトの名前。
戻り値の型
値が設定されていない場合は、フローティングオブジェクトの名前を返します。値が設定されている場合は、フローティングオブジェクトを返します。
次のサンプルコードは、nameメソッドを使用します。
var customFloatingObject = new GC.Spread.Sheets.FloatingObjects.FloatingObject();
customFloatingObject.name("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);