-1
Googleシートに新しい列を追加しようとしていますが、コードが機能しません。C#を使用してGoogleシートに新しい列を追加します。
これは私のコードです:
// Addind new column (not working! in sheet I have one column only)
var newColumnIndex = 2; CellQuery cellQuery = new
CellQuery(worksheet.CellFeedLink);
var cellFeed =
service.Query(cellQuery);
service.Insert(cellFeed, new CellEntry(1,
newColumnIndex, "test"));