Google スプレッドシートを使用した Google GUI ビルダー。GUI パネルをスプレッドシートにどのように配置しますか? setStyleAttribute を試しましたが、うまくいきません。幅と高さは機能しますが、パネルを配置できません。
function doGet() {
var app = UiApp.createApplication().setTitle("Measures").setStyleAttribute("position","absolute").setStyleAttribute("left", "8px").setStyleAttribute("top", "6px").setHeight(385).setWidth(100);
app.add(app.loadComponent("Measures"));
SpreadsheetApp.getActiveSpreadsheet().show(app);
}