Page.CropBox

Page.CropBox property

Gets or sets crop box of the page.

public Rectangle CropBox { get; set; }

Examples

Example demonstrates how to get crop box of the page:

Document document = new Document("sample.pdf");
Rectangle cropBox = document.Pages[1].CropBox;

See Also