| property SystemSetups: TSystemSetups; |
| [ssAllowSetup, ssAllowCopies, ssAllowCollate, ssAllowDuplex, ssAllowDestPreview, ssAllowDestPrinter, ssAllowDestFile, ssAllowPrinterSetup] |
| This property contains settings that define the behavior of the Printer Setup Dialog that TRvSystem uses. To see a description of each option see TSystemSetup. |
| // Disable the setup screen |
| RvSystem1.SystemSetups := RvSystem1.SystemSetups - [ssAllowSetup]; |
| RvSystem1->SystemSetups = RvSystem1->SystemSetups >> ssAllowSetup;
|
|