Excel.RunOptions interface
- Extends
Properties
| delay |
Determines whether Excel will delay the batch request until the user exits cell edit mode. When |
| merge |
Determines whether the batch requests should be merged to one undo group. When false, each |
Property Details
delayForCellEdit
Determines whether Excel will delay the batch request until the user exits cell edit mode.
When false, if the user is in cell edit when the batch request is processed by the host, the batch automatically fails. When true, the batch request is executed immediately if the user is not in cell edit mode, but if the user is in cell edit mode then the batch request is delayed until the user exits cell edit mode. The default behavior with no delayForCellEdit property specified is equivalent to when it is false.
delayForCellEdit?: boolean;
Property Value
boolean
mergeUndoGroup
Determines whether the batch requests should be merged to one undo group.
When false, each context.sync() call creates an undo record. When true, all context.sync() calls in a single Excel.run are merged into one undo group.
mergeUndoGroup?: boolean;
Property Value
boolean