예제 #1
0
        public static async Task <bool> TryAddExcelRowToTableAsync()
        {
            string createdFileId = await UserSnippets.UploadExcelFileAsync("excelTestResource.xlsx");

            WorkbookTableRow excelWorkbookTableRow = await UserSnippets.AddExcelRowToTableAsync(createdFileId);

            return(excelWorkbookTableRow != null);
        }