繁体   English   中英

如何在Google电子表格中插入标题?

[英]How to insert headers in google spreadsheet?

我试图添加一个arraylist作为电子表格中的标题。 我已经引用了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插入多行。 请改用cellfeed。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM