Update a Cell with C# and Sheets API v4

前端 未结 6 923
甜味超标
甜味超标 2020-12-15 18:33

Does anyone have a good C# example for updating a cell with the v4 API?

I have the get cell values c# example from the developer website working with Google Sheets A

6条回答
  •  星月不相逢
    2020-12-15 19:06

    First Create value range object like given below:

    Google.Apis.Sheets.v4.Data.ValueRange requestBody = new Google.Apis.Sheets.v4.Data.ValueRange();
    

提交回复
热议问题