如何在谷歌电子表格中插入标题

本文关键字:插入 标题 电子表格 谷歌 | 更新日期: 2023-09-27 18:01:15

我试图在电子表格中添加一个数组列表作为标题。我引用了Google api,我可以插入行。但现在我需要插入数组一行在一个镜头。可以请帮忙吗?

 // Create a local representation of the new row.
  ListEntry row = new ListEntry();
  row.Elements.Add(new ListEntry.Custom() { LocalName = "firstname", Value = "Joe" });
  row.Elements.Add(new ListEntry.Custom() { LocalName = "lastname", Value = "Smith" });
  row.Elements.Add(new ListEntry.Custom() { LocalName = "age", Value = "26" });
  row.Elements.Add(new ListEntry.Custom() { LocalName = "height", Value = "176" });
  // Send the new row to the API for insertion.
  service.Insert(listFeed, row);

如何在谷歌电子表格中插入标题

不能用listfeed插入多行。