System.UITypes.TMsgDlgType
Delphi
TMsgDlgType = (mtWarning, mtError, mtInformation, mtConfirmation, mtCustom);
C++
enum class DECLSPEC_DENUM TMsgDlgType : unsigned char { mtWarning, mtError, mtInformation, mtConfirmation, mtCustom };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.UITypes.pas System.UITypes.hpp |
System.UITypes | System.UITypes |
Description
Type of dialog box, which usually affects its appearance.
The following table lists the possible values:
Value | Meaning |
---|---|
|
Warns the user about a potential issue. |
|
Informs the user of an error that occurred. |
|
Provides information to the user. |
|
Ask the user for confirmation. |
|
None of the above. |