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

TdxPageSetupDialog.ButtonsEnabled Property

Specifies which buttons within the Page Setup dialog window are enabled.

#Declaration

Delphi
property ButtonsEnabled: TdxPageSetupDlgButtons read; write; default [psbStyleOptions, psbPreview, psbPrint];

#Property Value

Type
TdxPageSetupDlgButtons

#Remarks

Use the ButtonsEnabled property to specify which buttons are accessible and can be pressed. Possible values include:

Value Description
psbHelp Specifies whether the Help button is enabled.
psbStyleOptions Specifies whether the Options… button is enabled. This button is enabled only for custom paint styles for which you implemented a custom Print Style Options dialog. Refer to the How to Create Custom Print Styles topic to learn how to add these styles and implement dialogs for them.
psbPreview Specifies whether the Print Preview… button is enabled.
psbPrint Specifies whether the Print… button is enabled.

The default value of this property is [psbStyleOptions, psbPreview, psbPrint].

See Also