←Select platform

PDFEllipseAnnotation Class

Summary
Contains information for a PDF ellipse annotation.
Syntax
C#
C++/CLI
Java
Python
[SerializableAttribute()] 
public class PDFEllipseAnnotation : PDFAnnotation 
public class PDFEllipseAnnotation 
    extends PDFAnnotation 
[SerializableAttribute()] 
public ref class PDFEllipseAnnotation : public PDFAnnotation  
class PDFEllipseAnnotation(PDFAnnotation): 
Remarks

The PDFEllipseAnnotation class contains information for a single PDF ellipse annotation.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Pdf; 
using Leadtools.WinForms; 
using Leadtools.Drawing; 
 
 
public void PDFEllipseAnnotationExample() 
{ 
   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>(); 
   PDFEllipseAnnotation ellipse = new PDFEllipseAnnotation(); 
   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); 
 
   ellipse.Pen = pen; 
   ellipse.Brush = brush; 
   ellipse.Center = new PDFPoint(300, 300); 
   ellipse.HorizontalRadius = 100; 
   ellipse.VerticalRadius = 50; 
   Annotations.Add(ellipse); 
 
   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.