Page.ArtBox

Page.ArtBox property

Gets or sets art box of the page.

public Rectangle ArtBox { get; set; }

Examples

Example demonstrates how to get art box of the page:

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

See Also