Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Use Config.set_file_cache_directory to set the cache path.
Config.set_file_cache_directory('c:/storage/cache/')
For the storage details, please check this guide
path='c:/files/example.xlsx'
gwb = new GridJsWorkbook();
gwb.ImportExcelFile(path);
ret =gwb.export_to_json();
# GridJs will automatically zip all the images/shapes into a zip stream and store it in cache
# Get the file ID in the cache; UID is the unique ID for the spreadsheet instance, and sheet ID is the sheet index,
fileid=(uniqueid + '.' + (sheetid + '_batch.zip'))
# Get the zip file by the file ID
os.path.join(Config.file_cache_directory, fileid)
gwb = new GridJsWorkbook();
# p is the update JSON, UID is the unique ID for the spreadsheet
ret = gwb.UpdateCell(p, uid);
gwb = new GridJsWorkbook();
# p is the update JSON, UID is the unique ID for the spreadsheet
gwb.merge_excel_file_from_json(uid, p);
gwb.save_to_cache_with_file_name(uid, filename,password);
For detailed info, you can check the example here: https://github.com/aspose-cells/Aspose.Cells.Grid-for-Python-via-.NET/tree/main/Examples.GridJs
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.