PrintGetPaperSize Method (GdViewer)
In This Topic
Returns the current paper size, means the type of the paper, to be used by the active printer.
The value is determined through the PaperSize.Kind property of the default page settings.
Syntax
'Declaration
Public Function PrintGetPaperSize() As Integer
public int PrintGetPaperSize()
public function PrintGetPaperSize(): Integer;
public function PrintGetPaperSize() : int;
public: int PrintGetPaperSize();
public:
int PrintGetPaperSize();
Return Value
The constant that represents the current paper size. Please refer to the System.Drawing.Printing.PaperKind enumeration for correct values. Some of them are listed below (please see the corresponding ordering number):
- Letter, 8.5 x 11 in.
- Letter Small, 8.5 x 11 in.
- Tabloid, 11 x 17 in.
- Ledger, 17 x 11 in.
- Legal, 8.5 x 14 in.
- Statement, 5 1/2 x 8 1/2 in.
- Executive, 7 1/2 x 10 1/2 in.
- A3, 297 x 420 mm
- A4, 210 x 297 mm
- A4 Small, 210 x 297 mm
- A5, 148 x 210 mm
- B4, 250 x 354 mm
- B5, 182 x 257 mm
- Folio, 8.5 x 13 in.
- Quarto, 215 x 275 mm
- Standard 10 x 14 in.
- Standard 11 x 17 in.
- Note, 8.5 x 11 in.
- Envelope #9, 3 7/8 x 8 7/8 in.
- Envelope #10, 4 1/8 x 9.5 in.
- Envelope #11, 4.5 x 10 3/8 in.
- Envelope #12, 4.5 x 11 in.
- Envelope #14, 5 x 11.5 in.
- C size sheet
- D size sheet
- E size sheet
- Envelope DL, 110 x 220 mm
- Envelope C5, 162 x 229 mm
- Envelope C3, 324 x 458 mm
- Envelope C4, 229 x 324 mm
- Envelope C6, 114 x 162 mm
- Envelope C65, 114 x 229 mm
- Envelope B4, 250 x 353 mm
- Envelope B5, 176 x 250 mm
- Envelope B6, 176 x 125 mm
- Envelope Italy, 110 x 230 mm
- Envelope Monarch, 3 7/8 x 7.5 in.
- Envelope, 3 5/8 x 6.5 in.
- U.S. Standard Fanfold, 14 7/8 x 11 in.
- German Standard Fanfold, 8.5 x 12 in.
- German Legal Fanfold, 8 1/2 x 13 in.
- to 68. Less-common international sizes.
Greater than 118. Custom paper sizes.
The GetStat method can be subsequently used or the PrintGetStat method to determine if this method has been successful.
Example
How to find out some page properties of the active printer.
'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
Dim leftMargin As Single = 0, rightMargin As Single = 0
GdViewer1.PrintGetMargins(leftMargin, rightMargin)
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " margins: left = " + leftMargin.ToString() + ", right = " + rightMargin.ToString() + vbCrLf
Else
message = "The PrintGetMargins() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnBin As Integer = GdViewer1.PrintGetPaperBin()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper bin: " + prnBin.ToString() + vbCrLf
Else
message = "The PrintGetPaperBin() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnSize As Integer = GdViewer1.PrintGetPaperSize()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper size: " + prnSize.ToString() + vbCrLf
Else
message = "The PrintGetPaperSize() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnHeight As Single = GdViewer1.PrintGetPaperHeight()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper height: " + prnHeight.ToString()
Else
message = "The PrintGetPaperHeight() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnWidth As Single = GdViewer1.PrintGetPaperWidth()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper width: " + prnWidth.ToString() + vbCrLf
Else
message = "The PrintGetPaperWidth() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() <> GdPictureStatus.OK Then
message = "The example has NOT been followed successfully. Status: " + GdViewer1.GetStat().ToString()
End If
MessageBox.Show(message, "GdViewer.PrintGetPaperSize")
//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)
{
float leftMargin = 0, rightMargin = 0;
GdViewer1.PrintGetMargins(ref leftMargin, ref rightMargin);
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " margins: left = " + leftMargin.ToString() + ", right = " + rightMargin.ToString() + "\n";
else
message = "The PrintGetMargins() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
int prnBin = GdViewer1.PrintGetPaperBin();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper bin: " + prnBin.ToString() + "\n";
else
message = "The PrintGetPaperBin() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
int prnSize = GdViewer1.PrintGetPaperSize();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper size: " + prnSize.ToString() + "\n";
else
message = "The PrintGetPaperSize() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
float prnHeight = GdViewer1.PrintGetPaperHeight();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper height: " + prnHeight.ToString();
else
message = "The PrintGetPaperHeight() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
float prnWidth = GdViewer1.PrintGetPaperWidth();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper width: " + prnWidth.ToString() + "\n";
else
message = "The PrintGetPaperWidth() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() != GdPictureStatus.OK)
{
message = "The example has NOT been followed successfully. Status: " + GdViewer1.GetStat().ToString();
}
MessageBox.Show(message, "GdViewer.PrintGetPaperSize");
Example
How to find out some page properties of the active printer.
'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
Dim leftMargin As Single = 0, rightMargin As Single = 0
GdViewer1.PrintGetMargins(leftMargin, rightMargin)
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " margins: left = " + leftMargin.ToString() + ", right = " + rightMargin.ToString() + vbCrLf
Else
message = "The PrintGetMargins() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnBin As Integer = GdViewer1.PrintGetPaperBin()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper bin: " + prnBin.ToString() + vbCrLf
Else
message = "The PrintGetPaperBin() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnSize As Integer = GdViewer1.PrintGetPaperSize()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper size: " + prnSize.ToString() + vbCrLf
Else
message = "The PrintGetPaperSize() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnHeight As Single = GdViewer1.PrintGetPaperHeight()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper height: " + prnHeight.ToString()
Else
message = "The PrintGetPaperHeight() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() = GdPictureStatus.OK Then
Dim prnWidth As Single = GdViewer1.PrintGetPaperWidth()
If GdViewer1.GetStat() = GdPictureStatus.OK Then
message = message + " paper width: " + prnWidth.ToString() + vbCrLf
Else
message = "The PrintGetPaperWidth() method has failed with the status: " + GdViewer1.GetStat()
End If
End If
If GdViewer1.GetStat() <> GdPictureStatus.OK Then
message = "The example has NOT been followed successfully. Status: " + GdViewer1.GetStat().ToString()
End If
MessageBox.Show(message, "GdViewer.PrintGetPaperSize")
//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)
{
float leftMargin = 0, rightMargin = 0;
GdViewer1.PrintGetMargins(ref leftMargin, ref rightMargin);
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " margins: left = " + leftMargin.ToString() + ", right = " + rightMargin.ToString() + "\n";
else
message = "The PrintGetMargins() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
int prnBin = GdViewer1.PrintGetPaperBin();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper bin: " + prnBin.ToString() + "\n";
else
message = "The PrintGetPaperBin() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
int prnSize = GdViewer1.PrintGetPaperSize();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper size: " + prnSize.ToString() + "\n";
else
message = "The PrintGetPaperSize() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
float prnHeight = GdViewer1.PrintGetPaperHeight();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper height: " + prnHeight.ToString();
else
message = "The PrintGetPaperHeight() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
float prnWidth = GdViewer1.PrintGetPaperWidth();
if (GdViewer1.GetStat() == GdPictureStatus.OK)
message = message + " paper width: " + prnWidth.ToString() + "\n";
else
message = "The PrintGetPaperWidth() method has failed with the status: " + GdViewer1.GetStat();
}
if (GdViewer1.GetStat() != GdPictureStatus.OK)
{
message = "The example has NOT been followed successfully. Status: " + GdViewer1.GetStat().ToString();
}
MessageBox.Show(message, "GdViewer.PrintGetPaperSize");
See Also