使用Google表格API可以在Google表格中自动调整列宽吗? 我只能找到DimensionProperties但它需要精确值n像素。
答案 0 :(得分:1)
您可以使用Sheets API的autoResizeDimensions实现它。您可以在以下链接中查看详细信息。
POST https://sheets.googleapis.com/v4/spreadsheets/### fileId ###:batchUpdate
{
"requests": [
{
"autoResizeDimensions": {
"dimensions": {
"sheetId": sheetId,
"dimension": "COLUMNS",
"startIndex": 0,
"endIndex": 3
}
}
}
]
}
如果我误解了你的问题,我很抱歉。