MsgBoxSuppression
Suppression modes for the message boxes shown by the application. Available values: - Off: Every message box is shown. This is the default. - Notifications: Message boxes that only have to be acknowledged are skipped. Message boxes that ask you to choose between outcomes are still shown. - All: Every message box is skipped, including the ones that ask a question. Each skipped question is answered with its default button.
Import
import ScriptingApi as api
# Access the class
# MsgBoxSuppression is available via api.MsgBoxSuppression
Enumeration Values
Enumeration Mode from MsgBoxSuppression
| Value | Description |
|---|---|
MsgBoxSuppression.Off | Off option |
MsgBoxSuppression.Notifications | Notifications option |
MsgBoxSuppression.All | All option |
Usage Example
import ScriptingApi as api
# Access enumeration values
value = api.MsgBoxSuppression.Off