Create a standard page size box, in points.
Syntax

[C#]

static XRect MakeStandardBox(string inValue);

[Visual Basic]

Shared Function MakeStandardBox(inValue As String) As XRect
Params
Name Description
inValue The page name.
Notes

Use this method to create boxes of standard page sizes. The size of the box returned is in PDF points (1/72th of an inch). Valid values are:

  • A3
  • A4
  • A5
  • B4
  • B5
  • Letter
  • Legal
  • Tabloid
  • Ledger
  • Statement
  • Executive
  • Folio
  • Quarto
  • 10x14

An exception will be thrown if an invalid value is received.

Example

None.