PrintSettings in fastreports
We have several reports where some special printer settings need to be set, (like speed).
In windows it's possible to set these options, but there are not settable in fastreport TfrxPrintOptions
In other words: PrintDialog returns a PrinterSettings page, how to set these in FastReport?
System info:
-Fast Report 4.6 (stable)
-C# 2.0
Example code:
PrintDialog pd = new PrintDialog();
if (pd.ShowDialog() == DialogResult.OK) {
<fastreport report>.??? = pd.PrinterSettings;
}
In windows it's possible to set these options, but there are not settable in fastreport TfrxPrintOptions
In other words: PrintDialog returns a PrinterSettings page, how to set these in FastReport?
System info:
-Fast Report 4.6 (stable)
-C# 2.0
Example code:
PrintDialog pd = new PrintDialog();
if (pd.ShowDialog() == DialogResult.OK) {
<fastreport report>.??? = pd.PrinterSettings;
}