带有谷歌电子表格的谷歌 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);
}