Dialogs.TMsgDlgType
From RAD Studio VCL Reference
Delphi Information
From Dialogs.pas
TMsgDlgType = { mtWarning, mtError, mtInformation, mtConfirmation, mtCustom };
Unit: Dialogs
Type: enum
C++ Information
From Dialogs.hpp
enum TMsgDlgType{ mtWarning, mtError, mtInformation, mtConfirmation, mtCustom };
Unit: Dialogs
Type: enum
Description
TMsgDlgType defines values describing the type of message box.
The TMsgDlgType type defines the values describing the type of a message box. The TMsgDlgType is used by the MessageDlg and MessageDlgPos functions. The following table lists the possible values:
| Value | Meaning |
|---|---|
|
mtWarning |
A message box containing a yellow exclamation point symbol. |
|
mtError |
A message box containing a red stop sign. |
|
mtInformation |
A message box containing a blue "i". |
|
mtConfirmation |
A message box containing a green question mark. |
|
mtCustom |
A message box containing no bitmap. The caption of the message box is the name of the application's executable file. |