PrintSetPrinterSettings Method (GdViewer)
In This Topic
Sets up the printer settings of the active printer.
As explained in the PrintGetActivePrinter or the PrintSetActivePrinter methods, none of the available printers or their properties are affected using any of the print methods of this class.
Syntax
'Declaration
Public Function PrintSetPrinterSettings( _
ByVal As PrinterSettings _
) As GdPictureStatus
public GdPictureStatus PrintSetPrinterSettings(
PrinterSettings
)
public function PrintSetPrinterSettings(
: PrinterSettings
): GdPictureStatus;
public function PrintSetPrinterSettings(
: PrinterSettings
) : GdPictureStatus;
public: GdPictureStatus PrintSetPrinterSettings(
PrinterSettings*
)
public:
GdPictureStatus PrintSetPrinterSettings(
PrinterSettings^
)
Parameters
- PS
- A System.Drawing.Printing.PrinterSettings object. The newly specified printer settings of the active printer.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.
Example
How to set the printer settings for the active printer. This example shows you how to change the number of copies.
'We assume that the GdViewer1 control has been properly integrated.
If GdViewer1.DisplayFromFile("") = GdPictureStatus.OK Then
Dim prnSettings As System.Drawing.Printing.PrinterSettings
prnSettings = GdViewer1.PrintGetPrinterSettings()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
prnSettings.Copies = 2
GdViewer1.PrintSetPrinterSettings(prnSettings)
If GdViewer1.GetStat() = GdPictureStatus.OK Then
If GdViewer1.Print() = GdPictureStatus.OK Then
MessageBox.Show("The file has been printed successfully.", "GdViewer.PrintSetPrinterSettings")
Else
Dim message As String = "The file can't be printed." + vbCrLf + "Status: " + GdViewer1.PrintGetStat().ToString()
If GdViewer1.PrintGetStat() = GdPictureStatus.PrintingException Then message = message + " Error: " + GdViewer1.PrintSetPrinterSettings()
MessageBox.Show(message, "GdViewer.PrintSetPrinterSettings")
End If
Else
MessageBox.Show("The PrintSetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings")
End If
Else
MessageBox.Show("The PrintGetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings")
End If
GdViewer1.CloseDocument()
Else
MessageBox.Show("The file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.PrintSetPrinterSettings")
End If
//We assume that the GdViewer1 control has been properly integrated.
if (GdViewer1.DisplayFromFile("") == GdPictureStatus.OK)
{
System.Drawing.Printing.PrinterSettings prnSettings;
prnSettings = GdViewer1.PrintGetPrinterSettings();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
prnSettings.Copies = 2;
GdViewer1.PrintSetPrinterSettings(prnSettings);
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
if (GdViewer1.Print() == GdPictureStatus.OK)
{
MessageBox.Show("The file has been printed successfully.", "GdViewer.PrintSetPrinterSettings");
}
else
{
string message = "The file can't be printed.\nStatus: " + GdViewer1.PrintGetStat().ToString();
if (GdViewer1.PrintGetStat() == GdPictureStatus.PrintingException)
message = message + " Error: " + GdViewer1.PrintGetLastError();
MessageBox.Show(message, "GdViewer.PrintSetPrinterSettings");
}
}
else
{
MessageBox.Show("The PrintSetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings");
}
}
else
{
MessageBox.Show("The PrintGetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings");
}
GdViewer1.CloseDocument();
}
else
{
MessageBox.Show("The file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.PrintSetPrinterSettings");
}
Example
How to set the printer settings for the active printer. This example shows you how to change the number of copies.
'We assume that the GdViewer1 control has been properly integrated.
If GdViewer1.DisplayFromFile("") = GdPictureStatus.OK Then
Dim prnSettings As System.Drawing.Printing.PrinterSettings
prnSettings = GdViewer1.PrintGetPrinterSettings()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
prnSettings.Copies = 2
GdViewer1.PrintSetPrinterSettings(prnSettings)
If GdViewer1.GetStat() = GdPictureStatus.OK Then
If GdViewer1.Print() = GdPictureStatus.OK Then
MessageBox.Show("The file has been printed successfully.", "GdViewer.PrintSetPrinterSettings")
Else
Dim message As String = "The file can't be printed." + vbCrLf + "Status: " + GdViewer1.PrintGetStat().ToString()
If GdViewer1.PrintGetStat() = GdPictureStatus.PrintingException Then message = message + " Error: " + GdViewer1.PrintSetPrinterSettings()
MessageBox.Show(message, "GdViewer.PrintSetPrinterSettings")
End If
Else
MessageBox.Show("The PrintSetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings")
End If
Else
MessageBox.Show("The PrintGetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings")
End If
GdViewer1.CloseDocument()
Else
MessageBox.Show("The file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.PrintSetPrinterSettings")
End If
//We assume that the GdViewer1 control has been properly integrated.
if (GdViewer1.DisplayFromFile("") == GdPictureStatus.OK)
{
System.Drawing.Printing.PrinterSettings prnSettings;
prnSettings = GdViewer1.PrintGetPrinterSettings();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
prnSettings.Copies = 2;
GdViewer1.PrintSetPrinterSettings(prnSettings);
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
if (GdViewer1.Print() == GdPictureStatus.OK)
{
MessageBox.Show("The file has been printed successfully.", "GdViewer.PrintSetPrinterSettings");
}
else
{
string message = "The file can't be printed.\nStatus: " + GdViewer1.PrintGetStat().ToString();
if (GdViewer1.PrintGetStat() == GdPictureStatus.PrintingException)
message = message + " Error: " + GdViewer1.PrintGetLastError();
MessageBox.Show(message, "GdViewer.PrintSetPrinterSettings");
}
}
else
{
MessageBox.Show("The PrintSetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings");
}
}
else
{
MessageBox.Show("The PrintGetPrinterSettings() method has failed with the status: " + GdViewer1.GetStat(), "GdViewer.PrintSetPrinterSettings");
}
GdViewer1.CloseDocument();
}
else
{
MessageBox.Show("The file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.PrintSetPrinterSettings");
}
See Also