行高
GridView.RowHeight
说明
可读写
表格视图的行高,注意:设置值时为以下之一:'Short','Medium','Tall','ExtraTall' .
返回值
String
浏览器环境示例
javascript
async function example() {
await instance.ready();
const app = instance.Application;
const gridView = await app.Sheets(1).Views(1);
console.log(gridView.RowHeight);
gridView.RowHeight = 'Tall';
}
脚本编辑器 示例
javascript
function main() {
const gridView = Application.Sheets(1).Views(1);
console.log(gridView.RowHeight);
gridView.RowHeight = 'Tall';
}
main();