var value; // Type: any value = GC.Spread.Sheets.Designer.findControl(host);
function findControl( host : undefined ) : any;
パラメータ
- host
- 対象とするHTMLElement。
戻り値の型
既存のHTMLElementのデザイナインスタンス。
var value; // Type: any value = GC.Spread.Sheets.Designer.findControl(host);
function findControl( host : undefined ) : any;
// 次のサンプルコードは、既存のHTMLElementのデザイナインスタンスを取得します。 var designer = new GC.Spread.Sheets.Designer.Designer(document.getElementById("hostDiv")); var designer = GC.Spread.Sheets.Designer.findControl(document.getElementById("hostDiv")); var designer = GC.Spread.Sheets.Designer.findControl("hostDiv");