UIGraphics.BeginPDFPage Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| BeginPDFPage() |
Starts a new page using the bounds from the initial PDF context. |
| BeginPDFPage(CGRect, NSDictionary) |
Starts a new page with the specified bounds and page information in the current PDF context. |
BeginPDFPage()
Starts a new page using the bounds from the initial PDF context.
public static void BeginPDFPage();
static member BeginPDFPage : unit -> unit
Remarks
Does nothing if the current context is not a PDF context.
Applies to
BeginPDFPage(CGRect, NSDictionary)
Starts a new page with the specified bounds and page information in the current PDF context.
public static void BeginPDFPage(CoreGraphics.CGRect bounds, Foundation.NSDictionary pageInfo);
static member BeginPDFPage : CoreGraphics.CGRect * Foundation.NSDictionary -> unit
Parameters
- bounds
- CGRect
The bounds of the new PDF page.
- pageInfo
- NSDictionary
A dictionary containing page-specific metadata.
Remarks
Does nothing if the current context is not a PDF context.