Table of Contents

Class PdfLoadedCircleAnnotation

Namespace
Syncfusion.Pdf.Interactive
Assembly
Syncfusion.Pdf.Portable.dll

Represents the loaded Circle annotation class.

public class PdfLoadedCircleAnnotation : PdfLoadedStyledAnnotation, INotifyPropertyChanged
Inheritance
PdfLoadedCircleAnnotation
Implements
Inherited Members

Properties

Border

Get or set the border style of the annotation.

public LineBorder Border { get; set; }

Property Value

LineBorder

Comments

Gets the annotation comments history.

public PdfLoadedPopupAnnotationCollection Comments { get; }

Property Value

PdfLoadedPopupAnnotationCollection

The Comments collection of the circle annotation.

Examples

//Load an existing document.
PdfLoadedDocument document = new PdfLoadedDocument(@"..\..\Annotations.pdf");
//Load the existing PdfCircleAnnotation
PdfLoadedCircleAnnotation  circle = document.Pages[0].Annotations[0] as PdfLoadedCircleAnnotation;
//Get the comments collection
PdfLoadedPopupAnnotationCollection commentsCollection = circle.Comments;
//save the document
document.Save("CircleAnnotation.pdf");
//Close the docuemnt
document.Close(true);
'Load an existing document.
Dim document As New PdfLoadedDocument("..\..\Annotations.pdf")
'Load the existing PdfLoadedCircleAnnotation
Dim circle As PdfLoadedCircleAnnotation = document.Pages(0).Annotations(0)
'Get the Comment collection
Dim commentsCollection As PdfLoadedPopupAnnotationCollection = circle.Comments
Next
'save the document
document.Save("CircleAnnotation.pdf")
'Close the document.
document.Close(True)
See Also

ReviewHistory

Gets the annotation review history.

public PdfLoadedPopupAnnotationCollection ReviewHistory { get; }

Property Value

PdfLoadedPopupAnnotationCollection

The review collection of the circle annotation.

Examples

//Load an existing document.
PdfLoadedDocument document = new PdfLoadedDocument(@"..\..\Annotations.pdf");
//Load the existing PdfCircleAnnotation
PdfLoadedCircleAnnotation  circle = document.Pages[0].Annotations[0] as PdfLoadedCircleAnnotation;
//Get the review collection
PdfLoadedPopupAnnotationCollection reviewCollection = circle.ReviewHistory;
//save the document
document.Save("CircleAnnotation.pdf");
//Close the docuemnt
document.Close(true);
'Load an existing document.
Dim document As New PdfLoadedDocument("..\..\Annotations.pdf")
'Load the existing PdfLoadedCircleAnnotation
Dim circle As PdfLoadedCircleAnnotation = document.Pages(0).Annotations(0)
'Get the review collection
Dim reviewCollection As PdfLoadedPopupAnnotationCollection = circle.ReviewHistory
Next
'save the document
document.Save("CircleAnnotation.pdf")
'Close the document.
document.Close(True)
See Also

Methods

Save()

Saves an annotation.

protected override void Save()