c# google 电子表格输入到特定单元格

标签 c# google-sheets gdata-api google-docs

我正在尝试使用 C# 写入 Google 电子表格中的特定单元格,而不必搜索每个单元格并查看它是否是正确的单元格。例如,我不想为了写入 A1 而必须搜索工作表中所有单元格的标题中是否有“A1”。在其他编程语言 (python) 中,我发现了很多关于如何执行此操作的示例,但我在 C# 中找不到相同的方法。我该怎么做:

cell[1,1].value = "JoMama";

最佳答案

/// <summary>
    /// Updates a single cell in the specified worksheet.
    /// </summary>
    /// <param name="service">an authenticated SpreadsheetsService object</param>
    /// <param name="entry">the worksheet to update</param>
    private static void UpdateCell(SpreadsheetsService service, WorksheetEntry entry)
    {
        AtomLink cellFeedLink = entry.Links.FindService(GDataSpreadsheetsNameTable.CellRel, null);
        CellQuery query = new CellQuery(cellFeedLink.HRef.ToString());
        Console.WriteLine();

        Console.Write("Row of cell to update? ");
        string row = Console.ReadLine();

        Console.Write("Column of cell to update? ");
        string column = Console.ReadLine();

        query.MinimumRow = query.MaximumRow = uint.Parse(row);
        query.MinimumColumn = query.MaximumColumn = uint.Parse(column);

        CellFeed feed = service.Query(query);
        CellEntry cell = feed.Entries[0] as CellEntry;

        Console.WriteLine();
        Console.WriteLine("Current cell value: {0}", cell.Cell.Value);
        Console.Write("Enter a new value: ");
        string newValue = Console.ReadLine();

        cell.Cell.InputValue = newValue;
        AtomEntry updatedCell = cell.Update();

        Console.WriteLine("Successfully updated cell: {0}", updatedCell.Content.Content);
    }

关于c# google 电子表格输入到特定单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11976933/

相关文章:

c# - 更新具有多对多关系的断开连接的实体

python - 在 python 中与 google 电子表格交互的正确 api 是什么?

javascript - 哪个更快?值计算或公式 - Google Sheets 脚本编辑器 :

node.js - 无法生成发送给用户以请求访问特定非公开 Google 工作表的 URL

java - YouTube Java API 问题

c# - 当我使用 CancelAfter() 时,任务仍在运行

c# - 为什么线程创建这么快?

c# - 单例模式 - 默认属性

api - YouTube API - 按发布日期查询

php - 获取特定 Google 日历的 Zend_GData 提要