Enum PdfRubberStampAnnotationIcon
Specifies the enumeration of rubber stamp annotation icons.
Namespace: Syncfusion.Pdf.Interactive
Assembly: Syncfusion.Pdf.Base.dll
Syntax
public enum PdfRubberStampAnnotationIcon
Examples
//Load an existing document.
PdfLoadedDocument loadedDocument = new PdfLoadedDocument("Input.Pdf");
//Gets the annotation from loaded document.
PdfLoadedRubberStampAnnotation rubberStampAnnotation = loadedDocument.Pages[1].Annotations[5] as PdfLoadedRubberStampAnnotation;
//Set the icon
rubberStampAnnotation.Icon = PdfRubberStampAnnotationIcon.Approved;
//Save the document.
loadedDocument.Save("Output.pdf");
//close the document
loadedDocument.Close(true);
'Load an existing document.
Dim loadedDocument As New PdfLoadedDocument("Input.Pdf")
'Gets the annotation from loaded document.
Dim rubberStampAnnotation As PdfLoadedRubberStampAnnotation = TryCast(loadedDocument.Pages(1).Annotations(5), PdfLoadedRubberStampAnnotation)
'Set the icon
rubberStampAnnotation.Icon = PdfRubberStampAnnotationIcon.Approved
'Save the document.
loadedDocument.Save("Output.pdf")
'close the document
loadedDocument.Close(True)
Fields
Name | Description |
---|---|
Approved | Indicates approved rubber stamp annotation |
AsIs | Indicates AsIs rubber stamp annotation |
Completed | Indicates Completed rubber stamp annotation |
Confidential | Indicates confidential rubber stamp annotation |
Departmental | Indicates departmental rubber stamp annotation |
Draft | Indicates draft rubber stamp annotation |
Experimental | Indicates experimental rubber stamp annotation |
Expired | Indicates expired rubber stamp annotation |
Final | Indicates final rubber stamp annotation |
ForComment | Indicates for comment rubber stamp annotation |
ForPublicRelease | Indicates for public release rubber stamp annotation |
InformationOnly | Indicates information only rubber stamp annotation |
NotApproved | Indicates not approved rubber stamp annotation |
NotForPublicRelease | Indicates not for public release rubber stamp annotation |
PreliminaryResults | Indicates preliminary results rubber stamp annotation |
Sold | Indicates sold rubber stamp annotation |
TopSecret | Indicates top secret rubber stamp annotation |
Void | Indicates void rubber stamp annotation |