void ExportSheet(string sheetId, string sheetName)
        {
            Debug.Log($"sheetName: {sheetName}");
            EditorUtility.DisplayProgressBar("Reading From Google Sheet ", $"Sheet: {sheetName}", GetProcess());
            var gstuSearch = new GSTU_Search(sheetId, sheetName, "A1", "Z10000");

            SpreadsheetManager.Read(gstuSearch, ReadSheetCallback);
        }
Beispiel #2
0
        private void ExportSheet(string sheetId, string sheetName, string startCell, string endCell, bool buildText)
        {
            isBuildText = buildText;
            Debug.Log($"sheetName: {sheetName}");
            EditorUtility.DisplayProgressBar("Reading From Google Sheet ", $"Sheet: {sheetName}", GetProcess());
            var gstuSearch = new GSTU_Search(sheetId, sheetName, startCell, endCell);

            SpreadsheetManager.Read(gstuSearch, ReadSheetCallback);
        }