The constant that represents the required standard paper size to be used. Please refer to the System.Drawing.Printing.PaperKind enumeration for correct values. Some of them are listed below (please see the corresponding ordering number):
  1. Letter, 8.5 x 11 in.
  2. Letter Small, 8.5 x 11 in.
  3. Tabloid, 11 x 17 in.
  4. Ledger, 17 x 11 in.
  5. Legal, 8.5 x 14 in.
  6. Statement, 5 1/2 x 8 1/2 in.
  7. Executive, 7 1/2 x 10 1/2 in.
  8. A3, 297 x 420 mm
  9. A4, 210 x 297 mm
  10. A4 Small, 210 x 297 mm
  11. A5, 148 x 210 mm
  12. B4, 250 x 354 mm
  13. B5, 182 x 257 mm
  14. Folio, 8.5 x 13 in.
  15. Quarto, 215 x 275 mm
  16. Standard 10 x 14 in.
  17. Standard 11 x 17 in.
  18. Note, 8.5 x 11 in.
  19. Envelope #9, 3 7/8 x 8 7/8 in.
  20. Envelope #10, 4 1/8 x 9.5 in.
  21. Envelope #11, 4.5 x 10 3/8 in.
  22. Envelope #12, 4.5 x 11 in.
  23. Envelope #14, 5 x 11.5 in.
  24. C size sheet
  25. D size sheet
  26. E size sheet
  27. Envelope DL, 110 x 220 mm
  28. Envelope C5, 162 x 229 mm
  29. Envelope C3, 324 x 458 mm
  30. Envelope C4, 229 x 324 mm
  31. Envelope C6, 114 x 162 mm
  32. Envelope C65, 114 x 229 mm
  33. Envelope B4, 250 x 353 mm
  34. Envelope B5, 176 x 250 mm
  35. Envelope B6, 176 x 125 mm
  36. Envelope Italy, 110 x 230 mm
  37. Envelope Monarch, 3 7/8 x 7.5 in.
  38. Envelope, 3 5/8 x 6.5 in.
  39. U.S. Standard Fanfold, 14 7/8 x 11 in.
  40. German Standard Fanfold, 8.5 x 12 in.
  41. German Legal Fanfold, 8 1/2 x 13 in.
  42. to 68. Less-common international sizes.

Greater than 118. Custom paper sizes.

Example





In This Topic
GdPicture14.WPF Namespace / GdViewer Class / PrintSetStdPaperSize Method

PrintSetStdPaperSize Method (GdViewer)

In This Topic
Sets up the standard paper size, means the type of the paper, to be used by the active printer.
Syntax
'Declaration
 
Public Function PrintSetStdPaperSize( _
   ByVal PaperSize As Integer _
) As GdPictureStatus
public GdPictureStatus PrintSetStdPaperSize( 
   int PaperSize
)
public function PrintSetStdPaperSize( 
    PaperSize: Integer
): GdPictureStatus; 
public function PrintSetStdPaperSize( 
   PaperSize : int
) : GdPictureStatus;
public: GdPictureStatus PrintSetStdPaperSize( 
   int PaperSize
) 
public:
GdPictureStatus PrintSetStdPaperSize( 
   int PaperSize
) 

Parameters

PaperSize
The constant that represents the required standard paper size to be used. Please refer to the System.Drawing.Printing.PaperKind enumeration for correct values. Some of them are listed below (please see the corresponding ordering number):
  1. Letter, 8.5 x 11 in.
  2. Letter Small, 8.5 x 11 in.
  3. Tabloid, 11 x 17 in.
  4. Ledger, 17 x 11 in.
  5. Legal, 8.5 x 14 in.
  6. Statement, 5 1/2 x 8 1/2 in.
  7. Executive, 7 1/2 x 10 1/2 in.
  8. A3, 297 x 420 mm
  9. A4, 210 x 297 mm
  10. A4 Small, 210 x 297 mm
  11. A5, 148 x 210 mm
  12. B4, 250 x 354 mm
  13. B5, 182 x 257 mm
  14. Folio, 8.5 x 13 in.
  15. Quarto, 215 x 275 mm
  16. Standard 10 x 14 in.
  17. Standard 11 x 17 in.
  18. Note, 8.5 x 11 in.
  19. Envelope #9, 3 7/8 x 8 7/8 in.
  20. Envelope #10, 4 1/8 x 9.5 in.
  21. Envelope #11, 4.5 x 10 3/8 in.
  22. Envelope #12, 4.5 x 11 in.
  23. Envelope #14, 5 x 11.5 in.
  24. C size sheet
  25. D size sheet
  26. E size sheet
  27. Envelope DL, 110 x 220 mm
  28. Envelope C5, 162 x 229 mm
  29. Envelope C3, 324 x 458 mm
  30. Envelope C4, 229 x 324 mm
  31. Envelope C6, 114 x 162 mm
  32. Envelope C65, 114 x 229 mm
  33. Envelope B4, 250 x 353 mm
  34. Envelope B5, 176 x 250 mm
  35. Envelope B6, 176 x 125 mm
  36. Envelope Italy, 110 x 230 mm
  37. Envelope Monarch, 3 7/8 x 7.5 in.
  38. Envelope, 3 5/8 x 6.5 in.
  39. U.S. Standard Fanfold, 14 7/8 x 11 in.
  40. German Standard Fanfold, 8.5 x 12 in.
  41. German Legal Fanfold, 8 1/2 x 13 in.
  42. to 68. Less-common international sizes.

Greater than 118. Custom paper sizes.

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.

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
    If GdViewer1.PrintSetPaperBin(7) Then
        message = message + "    paper bin: 7 (automatic feed)" + vbCrLf
    Else
        message = "The PrintSetPaperBin() method has failed with the status: " + GdViewer1.GetStat()
    End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
    GdViewer1.PrintSetStdPaperSize(5)
    If GdViewer1.GetStat() = GdPictureStatus.OK Then
        message = message + "    paper size: (5) Legal" + vbCrLf
    Else
        message = "The PrintSetStdPaperSize() method has failed with the status: " + GdViewer1.GetStat()
    End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
    GdViewer1.PrintSetFromToPage(2, 4)
    If GdViewer1.GetStat() = GdPictureStatus.OK Then
        message = message + "    page range: 2-4" + vbCrLf
    Else
        message = "The PrintSetFromToPage() 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(PrintSizeOption.PrintSizeOptionActual) = 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.PrintSetStdPaperSize")
//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)
{
    if (GdViewer1.PrintSetPaperBin(7))
        message = message + "    paper bin: 7 (automatic feed)\n";
    else
        message = "The PrintSetPaperBin() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
    GdViewer1.PrintSetStdPaperSize(5);
    if (GdViewer1.GetStat() == GdPictureStatus.OK)
        message = message + "    paper size: (5) Legal\n";
    else
        message = "The PrintSetStdPaperSize() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
    GdViewer1.PrintSetFromToPage(2, 4);
    if (GdViewer1.GetStat() == GdPictureStatus.OK)
        message = message + "    page range: 2-4\n";
    else
        message = "The PrintSetFromToPage() 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(PrintSizeOption.PrintSizeOptionActual) == 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.PrintSetStdPaperSize");
See Also