←Select platform

AnnotationType Property

Summary
Gets the type of this annotation object.
Syntax
C#
C++/CLI
Java
Python
public override PDFAnnotationType AnnotationType { get; } 
public PDFAnnotationType getAnnotationType(); 
public: 
property PDFAnnotationType AnnotationType { 
   PDFAnnotationType get() override; 
} 
AnnotationType # get  (PDFSquigglyAnnotation) 

Property Value

A PDFAnnotationType enumeration member that specifies the type of annotation object associated with this PDFAnnotation.

Example
C#
Java
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Pdf; 
using Leadtools.WinForms; 
using Leadtools.Drawing; 
 
 
public void PDFSquigglyAnnotationExample() 
{ 
   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>(); 
   PDFSquigglyAnnotation squiggly = new PDFSquigglyAnnotation(); 
 
   // Add squiggly points 
   squiggly.Points.Add(new PDFPoint(60, 200)); 
   squiggly.Points.Add(new PDFPoint(180, 200)); 
   squiggly.Points.Add(new PDFPoint(180, 250)); 
   squiggly.Points.Add(new PDFPoint(60, 250)); 
 
   squiggly.Color = RasterColor.FromKnownColor(RasterKnownColor.Orange); 
   Annotations.Add(squiggly); 
 
   pdfFile.WriteAnnotations(Annotations, pdfDestFileName); 
} 
 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.File; 
import java.io.IOException; 
 
import java.util.ArrayList; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.assertTrue; 
 
import leadtools.*; 
import leadtools.pdf.*; 
 
 
public void pdfSquigglyAnnotationExample() { 
 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
 
   String pdfSrcFileName = combine(LEAD_VARS_IMAGES_DIR, "Leadtools.pdf"); 
   String pdfDestFileName = combine(LEAD_VARS_IMAGES_DIR, "LEAD_Annotations.pdf"); 
 
   PDFFile pdfFile = new PDFFile(pdfSrcFileName); 
   ArrayList<PDFAnnotation> annotations = new ArrayList<PDFAnnotation>(); 
   PDFSquigglyAnnotation squiggly = new PDFSquigglyAnnotation(); 
 
   // Add squiggly points 
   squiggly.getPoints().add(new PDFPoint(60, 200)); 
   squiggly.getPoints().add(new PDFPoint(180, 200)); 
   squiggly.getPoints().add(new PDFPoint(180, 250)); 
   squiggly.getPoints().add(new PDFPoint(60, 250)); 
 
   squiggly.setColor(RasterColor.fromKnownColor(RasterKnownColor.ORANGE)); 
   annotations.add(squiggly); 
 
   pdfFile.writeAnnotations(annotations, pdfDestFileName); 
 
   assertTrue(new File(pdfDestFileName).exists()); 
} 
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.