←Select platform

ArtBox Property

Summary
Gets the crop box of this page.
Syntax
C#
C++/CLI
Java
Python
public PDFRect ArtBox { get; } 
public PDFRect getArtBox(); 
public: 
property PDFRect ArtBox { 
   PDFRect get(); 
} 
ArtBox # get  (PDFDocumentPage) 

Property Value

A PDFRect that specifies the extent of the page's meaningful content (including potential white-space). By default, it has the same value as CropBox.

Remarks

This value is read-only. The MediaBox, CropBox, ArtBox, BleedBox and TrimBox properties are populated automatically when the PDFDocument is created by reading the values from the PDF file. For more information, refer to PDF Coordinate System.

The PDFDocumentPage object also contains the ConvertPoint and ConvertRect helper methods that can be used to convert a point or a rectangle to and from page/object to pixel or inch coordinates.

Example

static void TestPDFBoxes() 
{ 
   string srcFile = @"source.pdf"; 
   using (PDFDocument document = new PDFDocument(srcFile)) 
   { 
      Leadtools.Pdf.PDFDocumentPage pdfPage = document.Pages[0]; 
      Console.WriteLine($"Page 0: MediaBox = {pdfPage.MediaBox}"); 
      Console.WriteLine($"Page 0: CropBox = {pdfPage.CropBox}"); 
      Console.WriteLine($"Page 0: ArtBox = {pdfPage.ArtBox}"); 
      Console.WriteLine($"Page 0: BleedBox = {pdfPage.BleedBox}"); 
      Console.WriteLine($"Page 0: TrimBox = {pdfPage.TrimBox}"); 
   } 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Pdf Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.