System.UITypes.TMsgDlgType

From RAD Studio API Documentation
Jump to: navigation, search

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

mtWarning

Warns the user about a potential issue.

mtError

Informs the user of an error that occurred.

mtInformation

Provides information to the user.

mtConfirmation

Ask the user for confirmation.

mtCustom

None of the above.

See Also