Gets or sets a value indicating whether the XP style print dialog should be used.
public bool UseXpDialog {get; set;}
'Declaration
Public Property UseXpDialog As Boolean
Property Value
true
to use the XP style print dialog; otherwise,
false
to use the default print dialog of the current operating system.
This example demonstrates how to enable the XP style print dialog:
var printerSettings = new GrapeCity.ActiveReports.PrinterSettings();
printerSettings.UseXpDialog = true;
// Proceed with printing operations