Page.BleedBox

Page.BleedBox property

Gets or sets bleed box of the page.

public Rectangle BleedBox { get; set; }

Examples

Example demonstrates how to get bleed box of the page:

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

See Also