Class PdfLoadedEllipseAnnotation
Represents the loaded Ellipse annotation class.
Inheritance
System.Object
PdfLoadedEllipseAnnotation
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.Pdf.Interactive
Assembly: Syncfusion.Pdf.NET.dll
Syntax
public class PdfLoadedEllipseAnnotation : PdfLoadedStyledAnnotation, IPdfWrapper, INotifyPropertyChanged
Properties
Border
Get or set the line border of the annotation.
Declaration
public LineBorder Border { get; set; }
Property Value
Type |
---|
LineBorder |
BorderEffect
Get or set the border effect of the ellipse annotation.
Declaration
public PdfBorderEffect BorderEffect { get; set; }
Property Value
Type |
---|
PdfBorderEffect |
Examples
//Load an existing document.
PdfLoadedDocument document = new PdfLoadedDocument(@"....\Annotations.pdf");
//Load the existing pdf Ellipse annotation
PdfLoadedEllipseAnnotation ellipse = document.Pages[0].Annotations[0] as PdfLoadedEllipseAnnotation;
//Get and Set the border effect of the annotation
PdfBorderEffect borderEffect = ellipse.BorderEffect;
//save the document.
document.Save("PdfEllipseAnnotation.pdf");
//Close the document.
document.Close(true);
'Load an existing document.
Dim document As New PdfLoadedDocument("....\Annotations.pdf")
'Load the existing pdf ellipse annotation
Dim ellipse As PdfLoadedEllipseAnnotation = document.Pages(0).Annotations(0)
'Get and Set the border effect of the annotation
Dim borderEffect As PdfBorderEffect = ellipse.BorderEffect
'save the document.
document.Save("PdfEllipseAnnotation.pdf")
'Close the document.
document.Close(True)
Comments
Gets the annotation Comments history.
Declaration
public PdfLoadedPopupAnnotationCollection Comments { get; }
Property Value
Type | Description |
---|---|
PdfLoadedPopupAnnotationCollection | The Comments collection of the Ellipse annotation. |
Examples
//Load an existing document.
PdfLoadedDocument document = new PdfLoadedDocument(@"..\..\Annotations.pdf");
//Load the existing PdfEllipseAnnotation
PdfLoadedEllipseAnnotation ellipse = document.Pages[0].Annotations[0] as PdfLoadedEllipseAnnotation;
//Get the comments collection
PdfLoadedPopupAnnotationCollection reviewCollection = ellipse.Comments;
//save the document
document.Save("EllipseAnnotation.pdf");
//Close the docuemnt
document.Close(true);
'Load an existing document.
Dim document As New PdfLoadedDocument("..\..\Annotations.pdf")
'Load the existing PdfEllipseAnnotation
Dim ellipse As PdfLoadedEllipseAnnotation = document.Pages(0).Annotations(0)
'Get the comments collection
Dim commentsCollection As PdfLoadedPopupAnnotationCollection = ellipse.Comments
Next
'save the document
document.Save("EllipseAnnotation.pdf")
'Close the document.
document.Close(True)
See Also
ReviewHistory
Gets the annotation review history.
Declaration
public PdfLoadedPopupAnnotationCollection ReviewHistory { get; }
Property Value
Type | Description |
---|---|
PdfLoadedPopupAnnotationCollection | The review collection of the Ellipse annotation. |
Examples
//Load an existing document.
PdfLoadedDocument document = new PdfLoadedDocument(@"..\..\Annotations.pdf");
//Load the existing PdfEllipseAnnotation
PdfLoadedEllipseAnnotation ellipse = document.Pages[0].Annotations[0] as PdfLoadedEllipseAnnotation;
//Get the review collection
PdfLoadedPopupAnnotationCollection reviewCollection = ellipse.ReviewHistory;
//save the document
document.Save("EllipseAnnotation.pdf");
//Close the docuemnt
document.Close(true);
'Load an existing document.
Dim document As New PdfLoadedDocument("..\..\Annotations.pdf")
'Load the existing PdfEllipseAnnotation
Dim ellipse As PdfLoadedEllipseAnnotation = document.Pages(0).Annotations(0)
'Get the review collection
Dim reviewCollection As PdfLoadedPopupAnnotationCollection = ellipse.ReviewHistory
Next
'save the document
document.Save("EllipseAnnotation.pdf")
'Close the document.
document.Close(True)
See Also
Methods
Save()
Saves an annotation.
Declaration
protected override void Save()
Overrides
Implements
System.ComponentModel.INotifyPropertyChanged