我正在尝试在电子表格中添加一个arraylist作为标题。我推荐谷歌apis,我喜欢插入行。但现在我需要一次性插入行数组。请帮忙。
// 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);
答案 0 :(得分:0)
无法使用listfeed插入多行。改为使用cellfeed。