MsgBoxTypes

Use this enumeration to specify the msgBoxType parameter of the Engine.DisplayMessageBox method. These constants specify the icon and default title the message box displays.

  • MsgBox_Custom –(Value: 3) Specifies no icon and no default title.
  • MsgBox_Error –(Value: 2) Specifies an icon and default title that indicate an error has occurred.
  • MsgBox_Information –(Value: 1) Specifies an icon and default title that indicate an informational message.
  • MsgBox_Warning –(Value: 0) Specifies an icon and default title that indicate a warning message.

See Also

Engine.DisplayMessageBox