Hi OnlyOffice team!
In your Api, do you have an option to disable automatic calculation, spreadsheet rendering, and all such stuff when the macro is executing? To make the macro work faster.
For example, in Excel VBA, it looks like this:
Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
< some code >
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
In case there’s no method for such thing yet, is there any internal method with “asc_” prefix that could help me?
Thanks!