我正在使用C#库在Google电子表格中创建一个新的工作表。创建工作表后,我想写信给它。我没有LocalName,因为它是一个没有标题的新工作表。有没有人这样做过?
newRow.Elements.Add(new ListEntry.Custom
{
Value = value,
LocalName = local
});
答案 0 :(得分:0)
对于新工作表,我建议使用基于单元格的Feed添加第一行: https://developers.google.com/google-apps/spreadsheets/#changing_contents_of_a_cell
只需使用索引A1到A {N}添加标题,然后继续使用基于列表的Feed。