System.UITypes.TPrintDialogOption
Delphi
TPrintDialogOption = (poPrintToFile, poPageNums, poSelection, poWarning,
poHelp, poDisablePrintToFile);
C++
enum class DECLSPEC_DENUM TPrintDialogOption : unsigned char { poPrintToFile, poPageNums, poSelection, poWarning, poHelp, poDisablePrintToFile };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | System.UITypes.pas System.UITypes.hpp |
System.UITypes | System.UITypes |
Description
Specifies options for the FMX.Printer.TPrintDialog component.
This enumeration defines the following values:
| Value | Description |
|---|---|
|
poDisablePrintToFile |
Disables (grays) the Print To File Check box. (Applicable only if the poPrintToFile flag is set.) |
|
poHelp |
Displays the Help button on the dialog. May not work in some versions of Windows 95. |
|
poPageNums |
Enables the Pages radio button, that allows the user to specify a page range. |
|
poPrintToFile |
Displays the Print To File check box on the dialog. |
|
poSelection |
Enables the Selection radio button that allows the user to print selected (highlighted) text. |
|
poWarning |
Generates a warning message if the user tries to send a job to an uninstalled printer. |