←Select platform

Bounds Property

Summary
Source bounds of rectangle annotation.
Syntax
C#
C++/CLI
Java
Python
public PDFRect Bounds { get; set; } 
public PDFRect getBounds(); 
public void setBounds( 
   PDFRect pDFRect 
); 
public: 
property PDFRect Bounds { 
   PDFRect get(); 
   void set (    PDFRect ); 
} 
Bounds # get and set (PDFRectangleAnnotation) 

Property Value

A PDFRect that represents the source location and size of rectangle annotation in PDF units (1/72 of an inch and bottom left). The default value is an empty PDFRect.

Remarks

You can use the PDFDocumentPage.ConvertRect helper method to convert from pixel or inches to PDF units and back.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Pdf; 
using Leadtools.WinForms; 
using Leadtools.Drawing; 
 
 
public void PDFRectangleAnnotationExample() 
{ 
   string pdfSrcFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf"); 
   string pdfDestFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_Annotations.pdf"); 
 
   PDFFile pdfFile = new PDFFile(pdfSrcFileName); 
   List<PDFAnnotation> Annotations = new List<PDFAnnotation>(); 
   PDFRectangleAnnotation rectangle = new PDFRectangleAnnotation(); 
   PDFPen pen = new PDFPen(); 
   PDFBrush brush = new PDFBrush(); 
 
   // Assign pen properties 
   // Create dashed red pen with width of 2 
   pen.Color = RasterColor.FromKnownColor(RasterKnownColor.Red); 
   pen.PenStyle = PDFPen.Dashed; 
   pen.Width = 2; 
 
   // Assign brush properties 
   // Create green solid brush 
   brush.BrushStyle = PDFBrush.Solid; 
   brush.Color = RasterColor.FromKnownColor(RasterKnownColor.Green); 
 
   rectangle.Pen = pen; 
   rectangle.Brush = brush; 
   rectangle.Bounds = new PDFRect(100, 300, 400, 200); 
   rectangle.Transparency = 1; 
   Annotations.Add(rectangle); 
 
   pdfFile.WriteAnnotations(Annotations, pdfDestFileName); 
} 
 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.Pdf Assembly

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