spreadsheets sheets programar google example docs c# google-spreadsheet gdata-api google-docs

sheets - c#google spreadhseets ingresando en una celda específica



google spreadsheets integration (1)

/// <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); }

Intento escribir en una celda específica en una hoja de cálculo de Google usando C # sin tener que buscar en cada celda y ver si es la celda correcta. Por ejemplo, no quiero tener que buscar para ver si "A1" está en el título de todas las celdas en una hoja de cálculo para escribir en A1. En otros lenguajes de programación (python) he encontrado muchos ejemplos de cómo hacer esto, pero no puedo encontrar los mismos métodos en C #. ¿Cómo puedo hacer algo como esto?

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