| property IgnoreFileSettings: Boolean |
| When this is set to true it will ignore the printer setup values (Paper Bin, Duplex, Collate, Copies) stored in the report file and will use whatever is currently set by the user. This allows a PrinterSetupDialog to be called before the Execute method. |
| if RvRenderPrinter1.ShowPrinterSetupDialog then begin |
| RvRenderPrinter1.IgnoreFileSettings := True; |
| RvRenderPrinter1.Execute; |
| if (RvRenderPrinter1->ShowPrinterSetupDialog()) { |
| RvRenderPrinter1->IgnoreFileSettings = true; |
| RvRenderPrinter1->Execute(); |
|