Skip to main content

MsgBoxSuppression

Other

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

ValueDescription
MsgBoxSuppression.OffOff option
MsgBoxSuppression.NotificationsNotifications option
MsgBoxSuppression.AllAll option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.MsgBoxSuppression.Off

See Also