Google表格样式(仅黑体字第一行)

时间:2018-11-13 19:43:05

标签: python json google-sheets google-sheets-api

如何使用Python和google-sheets api仅对Google表格的第一行加粗。

我用了这个:

{  
   "requests":[  
      {  
         "repeatCell":{  
            "range":{  
               "sheetId":0,
               "startRowIndex":0,
               "endRowIndex":1
            },
            "cell":{  
               "userEnteredFormat":{  
                  "textFormat":{  
                     "bold":true
                  }
               }
            },
            "fields":"userEnteredFormat.textFormat.bold"
         }
      }
   ]
}

但是这个黑体字整个单元格。

1 个答案:

答案 0 :(得分:0)

像这样更改代码:

{  
   "requests":[  
      {  
         "repeatCell":{  
            "range":{  
               "endRowIndex":1
            },
            "cell":{  
               "userEnteredFormat":{  
                  "textFormat":{  
                     "bold": true
                  }
               }
            },
            "fields":"userEnteredFormat.textFormat.bold"
         }
      }
   ]
}

这将使工作表的第一行加粗。 有关更多信息,请阅读Google表格中有关range的文档。