System.UITypes.TMsgDlgBtn

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMsgDlgBtn = (mbYes, mbNo, mbOK, mbCancel, mbAbort, mbRetry, mbIgnore,
mbAll, mbNoToAll, mbYesToAll, mbHelp, mbClose);

C++

enum class DECLSPEC_DENUM TMsgDlgBtn : unsigned char { mbYes, mbNo, mbOK, mbCancel, mbAbort, mbRetry, mbIgnore, mbAll, mbNoToAll, mbYesToAll, mbHelp, mbClose };

Properties

Type Visibility Source Unit Parent
enum public
System.UITypes.pas
System.UITypes.hpp
System.UITypes System.UITypes

Description

Represents a dialog box button.

The following table lists the possible values:

Value Meaning

mbYes

A button with the text 'Yes' on its face.

mbNo

A button with the text 'No' on its face.

mbOK

A button with the text 'OK' on its face.

mbCancel

A button with the text 'Cancel' on its face.

mbAbort

A button with the text 'Abort' on its face.

mbRetry

A button with the text 'Retry' on its face.

mbIgnore

A button with the text 'Ignore' on its face.

mbAll

A button with the text 'All' on its face.

mbNoToAll

A button with the text 'No to All' on its face.

mbYesToAll

A button with the text 'Yes to All' on its face.

mbHelp

A button with the text 'Help' on its face.

mbClose

A button with the text 'Close' on its face.

See Also