Property Value
true
to use the standard print dialog; otherwise, false
to use a custom dialog that may include additional options such as an "Advanced" button.true
to use the standard print dialog; otherwise, false
to use a custom dialog that may include additional options such as an "Advanced" button.false
allows the application to present a custom print dialog to the user. This custom dialog can include additional features and options, such as an "Advanced" button for accessing more detailed print settings. This flexibility can be useful for applications that require more control over the printing process or need to expose application-specific printing options to the user. It is important to consider the target audience and the complexity of the printing requirements when deciding whether to use the standard dialog or a custom one. The standard dialog is recommended for most scenarios due to its simplicity and familiarity to users.var printerSettings = new GrapeCity.ActiveReports.PrinterSettings(); printerSettings.UseStandardDialog = true; // Proceed with printing operations