Write range
Element that writes cells range to Google Sheets spreadsheet.

Property
Type
Description
Range*
String
Cells range (A1:D12)
Sheet name
String
Sheet name
Variable (text)
List<List<object>>
Variable that stores cell range text
LTools.Office.GoogleSheetsApp app = LTools.Office.GoogleSheetsApp.Init(wf, @"Token file path", @"Spreadsheet ID");
app.WriteRange(new List<List<object>>() { new List<object>() { "aaa1", "bbb1" } }, "A1:B1", "Sheet1");
Last updated