[office-js, office-js-preview] Note about suspendScreenUpdatingUntilNextSync behavior (#43493)

* Removing prompt verbage from selection binding options

* Note about suspendScreenUpdatingUntilNextSync behavior
This commit is contained in:
Alex Jerabek 2020-03-30 12:17:48 -07:00 committed by GitHub
parent c03bbb7743
commit ced96117ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -21199,7 +21199,9 @@ declare namespace Excel {
*/
suspendApiCalculationUntilNextSync(): void;
/**
* Suspends sceen updating until the next "context.sync()" is called.
* Suspends screen updating until the next `context.sync()` is called.
*
* **Note**: Don't call `suspendScreenUpdatingUntilNextSync` repeatedly (such as in a loop). Repeated calls will cause the Excel window to flicker.
*
* [Api set: ExcelApi 1.9]
*/

View File

@ -18339,8 +18339,10 @@ declare namespace Excel {
*/
suspendApiCalculationUntilNextSync(): void;
/**
* Suspends sceen updating until the next "context.sync()" is called.
*
* Suspends screen updating until the next `context.sync()`is called.
*
* **Note**: Don't call `suspendScreenUpdatingUntilNextSync` repeatedly (such as in a loop). Repeated calls will cause the Excel window to flicker.
*
* [Api set: ExcelApi 1.9]
*/
suspendScreenUpdatingUntilNextSync(): void;