Skip to main content

MsgBoxLevel

Enumerations

Message levels for the message box.

Import

import ScriptingApi as api

# Access the class
# MsgBoxLevel is available via api.MsgBoxLevel

Enumeration Values

Enumeration Level from MsgBoxLevel

ValueDescription
MsgBoxLevel.InfoInfo option
MsgBoxLevel.WarnWarn option
MsgBoxLevel.ErrorError option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.MsgBoxLevel.Info

See Also