Set this parameter to true if you want to show the progress bar during the print process, otherwise set it to false. The true.
Example





In This Topic
GdPicture14 Namespace / GdPicturePDF Class / PrintSetShowPrintingProgress Method

PrintSetShowPrintingProgress Method (GdPicturePDF)

In This Topic
Enables or disables showing the progress indicator during the print process. The printing progress bar is displayed by default.
Syntax
'Declaration

 

Public Function PrintSetShowPrintingProgress( _

   ByVal Show As Boolean _

) As GdPictureStatus
public GdPictureStatus PrintSetShowPrintingProgress( 

   bool Show

)
public function PrintSetShowPrintingProgress( 

    Show: Boolean

): GdPictureStatus; 
public function PrintSetShowPrintingProgress( 

   Show : boolean

) : GdPictureStatus;
public: GdPictureStatus PrintSetShowPrintingProgress( 

   bool Show

) 
public:

GdPictureStatus PrintSetShowPrintingProgress( 

   bool Show

) 

Parameters

Show
Set this parameter to true if you want to show the progress bar during the print process, otherwise set it to false. The true.

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.
Example
How to disable displaying the printing progress bar.
Dim caption As String = "Example: PrintSetShowPrintingProgress"

Using gdpicturePDF As New GdPicturePDF()

    If gdpicturePDF.LoadFromFile("document_to_print.pdf", False) = GdPictureStatus.OK Then

        'Printing progress bar will not display.

        gdpicturePDF.PrintSetShowPrintingProgress(False)

        If gdpicturePDF.Print() = GdPictureStatus.OK Then

            MessageBox.Show("The file has been printed successfully.", caption)

        Else

            Dim message As String = "The file can't be printed." + vbCrLf + "Status: " + gdpicturePDF.PrintGetStat().ToString()

            If gdpicturePDF.PrintGetStat() = GdPictureStatus.PrintingException Then

                message = message + "    Error: " + gdpicturePDF.PrintGetLastError()

            End If

            MessageBox.Show(message, caption)

        End If

        gdpicturePDF.CloseDocument()

    Else

        MessageBox.Show("The file can't be loaded. Status: " + gdpicturePDF.GetStat().ToString(), caption)

    End If

End Using
string caption = "Example: PrintSetShowPrintingProgress";

using (GdPicturePDF gdpicturePDF = new GdPicturePDF())

{

    if (gdpicturePDF.LoadFromFile("document_to_print.pdf", false) == GdPictureStatus.OK)

    {

        //Printing progress bar will not display.

        gdpicturePDF.PrintSetShowPrintingProgress(false);

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

        {

            MessageBox.Show("The file has been printed successfully.", caption);

        }

        else

        {

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

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

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

            MessageBox.Show(message, caption);

        }

        gdpicturePDF.CloseDocument();

    }

    else

    {

        MessageBox.Show("The file can't be loaded. Status: " + gdpicturePDF.GetStat().ToString(), caption);

    }

}
See Also