TdxPageSetupDialog.ButtonsEnabled Property
In This Article
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 |
---|
Tdx |
#Remarks
Use the ButtonsEnabled property to specify which buttons are accessible and can be pressed. Possible values include:
Value | Description |
---|---|
psb |
Specifies whether the Help button is enabled. |
psb |
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. |
psb |
Specifies whether the Print Preview… button is enabled. |
psb |
Specifies whether the Print… button is enabled. |
The default value of this property is [psbStyleOptions, psbPreview, psbPrint].
See Also