Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxMessageDialogStyle Enum

Enumerates message dialog box styles.

#Declaration

Delphi
TdxMessageDialogStyle = (
    mdsMessageDlg,
    mdsMessageBox
);

#Members

Name Description Example
mdsMessageDlg

This message dialog style imitates dialogs that the standard MessageDlg function invokes.

The message box layout has increased paddings between borders and the message icon.

VCL Editors Library: A Message Dialog Style Example

mdsMessageBox

This message box style imitates dialog boxes that the standard MessageBox function invokes.

The message box layout is smaller compared to the message dialog style (mdsMessageDlg).

VCL Editors Library: A Message Box Style Example

#Remarks

A message dialog form’s Style property references the TdxMessageDialogStyle type.

See Also