A member of the PrintQuality enumeration. The new value of the active printer quality setting.
Example





In This Topic
GdPicture14 Namespace / GdViewer Class / PrintSetQuality Method

PrintSetQuality Method (GdViewer)

In This Topic
Sets up the printer quality setting of the active printer. This setting matches the PrinterResolutionKind property included in the PrinterSettings.PrinterResolutions parameter of the active printer.

If the required Quality parameter is identified within the set of PrinterSettings.PrinterResolutions property items of the active printer, then the currently defined active printer resolution is filled up with the specified resolution attributes provided by the corresponding printer resolution item.

Syntax
'Declaration

 

Public Function PrintSetQuality( _

   ByVal Quality As PrintQuality _

) As GdPictureStatus
public GdPictureStatus PrintSetQuality( 

   PrintQuality Quality

)
public function PrintSetQuality( 

    Quality: PrintQuality

): GdPictureStatus; 
public function PrintSetQuality( 

   Quality : PrintQuality

) : GdPictureStatus;
public: GdPictureStatus PrintSetQuality( 

   PrintQuality Quality

) 
public:

GdPictureStatus PrintSetQuality( 

   PrintQuality Quality

) 

Parameters

Quality
A member of the PrintQuality enumeration. The new value of the active printer quality setting.

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.

Remarks
It is recommend to use the GetStat method or the PrintGetStat method to identify the specific reason for the method's failure, if any.

Just to remind you that the active printer is the printer identified by the PrintGetActivePrinter method or set by the PrintSetActivePrinter method and it is dedicated to executing all subsequent print jobs using this class as well as utilizing all by you altered printer settings.

Likewise to inform you that you can also use the PrintSetPrinterSettings method to specify all relevant printer settings for the active printer according to your preference and printer possibilities.

Example
How to set up some printer properties to be used for printing the displayed document.
'We assume that the GdViewer1 control has been properly integrated.

Dim message As String = ""

Dim curPrinter As String = GdViewer1.PrintGetActivePrinter()

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    message = "Active printer: " + curPrinter + vbCrLf

Else

    message = "The PrintGetActivePrinter() method has failed with the status: " + GdViewer1.GetStat()

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    GdViewer1.PrintSetAlignment(PrintAlignment.PrintAlignmentMiddleCenter)

    If GdViewer1.GetStat() = GdPictureStatus.OK Then

        message = message + "    alignment: MiddleCenter" + vbCrLf

    Else

        message = "The PrintSetAlignment() method has failed with the status: " + GdViewer1.GetStat()

    End If

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    GdViewer1.PrintSetAutoRotation(True)

    If GdViewer1.GetStat() = GdPictureStatus.OK Then

        message = message + "    auto-rotation: true" + vbCrLf

    Else

        message = "The PrintSetAutoRotation() method has failed with the status: " + GdViewer1.GetStat()

    End If

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    GdViewer1.PrintSetCollate(True)

    If GdViewer1.GetStat() = GdPictureStatus.OK Then

        message = message + "    collate: true" + vbCrLf

    Else

        message = "The PrintSetCollate() method has failed with the status: " + GdViewer1.GetStat()

    End If

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    GdViewer1.PrintSetColorMode(PrinterColorMode.PrinterColorModeColor)

    If GdViewer1.GetStat() = GdPictureStatus.OK Then

        message = message + "    color mode: Color" + vbCrLf

    Else

        message = "The PrintSetColorMode() method has failed with the status: " + GdViewer1.GetStat()

    End If

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    GdViewer1.PrintSetDuplexMode(System.Drawing.Printing.Duplex.Simplex)

    If GdViewer1.GetStat() = GdPictureStatus.OK Then

        message = message + "    duplex: Simplex" & vbCrLf

    Else

        message = "The PrintSetDuplexMode() method has failed with the status: " + GdViewer1.GetStat()

    End If

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    GdViewer1.PrintSetOrientation(PrinterOrientation.PrinterOrientationPortrait)

    If GdViewer1.GetStat() = GdPictureStatus.OK Then

        message = message + "    orientation: Portrait" + vbCrLf

    Else

        message = "The PrintSetOrientation() method has failed with the status: " + GdViewer1.GetStat()

    End If

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    GdViewer1.PrintSetQuality(PrintQuality.PrintQualityHighResolution)

    If GdViewer1.GetStat() = GdPictureStatus.OK Then

        message = message + "    quality: High" + vbCrLf

    Else

        message = "The PrintSetQuality() method has failed with the status: " + GdViewer1.GetStat()

    End If

End If

If GdViewer1.GetStat() = GdPictureStatus.OK Then

    'We assume that the required document is displayed in the GdViewer1 control.

    If GdViewer1.Print() = GdPictureStatus.OK Then

        message = message + "The file has been printed successfully using new settings."

    Else

        message = message + "The file can't be printed." + vbCrLf + "Status: " + GdViewer1.PrintGetStat().ToString()

        If GdViewer1.PrintGetStat() = GdPictureStatus.PrintingException Then message = message + "    Error: " + GdViewer1.PrintGetLastError()

    End If

Else

    message = "The example has NOT been followed successfully. Status: " + GdViewer1.GetStat().ToString()

End If

MessageBox.Show(message, "GdViewer.PrintSetQuality")
//We assume that the GdViewer1 control has been properly integrated.

string message = "";

string curPrinter = GdViewer1.PrintGetActivePrinter();

if (GdViewer1.GetStat() == GdPictureStatus.OK)

    message = "Active printer: " + curPrinter + "\n";

else

    message = "The PrintGetActivePrinter() method has failed with the status: " + GdViewer1.GetStat();

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    GdViewer1.PrintSetAlignment(PrintAlignment.PrintAlignmentMiddleCenter);

    if (GdViewer1.GetStat() == GdPictureStatus.OK)

        message = message + "    alignment: MiddleCenter\n";

    else

        message = "The PrintSetAlignment() method has failed with the status: " + GdViewer1.GetStat();

}

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    GdViewer1.PrintSetAutoRotation(true);

    if (GdViewer1.GetStat() == GdPictureStatus.OK)

        message = message + "    auto-rotation: true\n";

    else

        message = "The PrintSetAutoRotation() method has failed with the status: " + GdViewer1.GetStat();

}

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    GdViewer1.PrintSetCollate(true);

    if (GdViewer1.GetStat() == GdPictureStatus.OK)

        message = message + "    collate: true\n";

    else

        message = "The PrintSetCollate() method has failed with the status: " + GdViewer1.GetStat();

}

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    GdViewer1.PrintSetColorMode(PrinterColorMode.PrinterColorModeColor);

    if (GdViewer1.GetStat() == GdPictureStatus.OK)

        message = message + "    color mode: Color\n";

    else

        message = "The PrintSetColorMode() method has failed with the status: " + GdViewer1.GetStat();

}

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    GdViewer1.PrintSetDuplexMode(System.Drawing.Printing.Duplex.Simplex);

    if (GdViewer1.GetStat() == GdPictureStatus.OK)

        message = message + "    duplex: Simplex\n";

    else

        message = "The PrintSetDuplexMode() method has failed with the status: " + GdViewer1.GetStat();

}

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    GdViewer1.PrintSetOrientation(PrinterOrientation.PrinterOrientationPortrait);

    if (GdViewer1.GetStat() == GdPictureStatus.OK)

        message = message + "    orientation: Portrait\n";

    else

        message = "The PrintSetOrientation() method has failed with the status: " + GdViewer1.GetStat();

}

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    GdViewer1.PrintSetQuality(PrintQuality.PrintQualityHighResolution);

    if (GdViewer1.GetStat() == GdPictureStatus.OK)

        message = message + "    quality: High\n";

    else

        message = "The PrintSetQuality() method has failed with the status: " + GdViewer1.GetStat();

}

if (GdViewer1.GetStat() == GdPictureStatus.OK)

{

    //We assume that the required document is displayed in the GdViewer1 control.

    if (GdViewer1.Print() == GdPictureStatus.OK)

    {

        message = message + "The file has been printed successfully using new settings.";

    }

    else

    {

        message = message + "The file can't be printed.\nStatus: " + GdViewer1.PrintGetStat().ToString();

        if (GdViewer1.PrintGetStat() == GdPictureStatus.PrintingException)

            message = message + "    Error: " + GdViewer1.PrintGetLastError();

    }

}

else

{

    message = "The example has NOT been followed successfully. Status: " + GdViewer1.GetStat().ToString();

}

MessageBox.Show(message, "GdViewer.PrintSetQuality");
See Also