PdfRubberStampIcon
Specifies the predefined icon for a rubber stamp annotation.
from nutrient import PdfRubberStampIconValues
| Name | Value | Description |
|---|---|---|
PdfRubberStampIcon.APPROVED | 0 | An “Approved” stamp. |
PdfRubberStampIcon.EXPERIMENTAL | 1 | An “Experimental” stamp. |
PdfRubberStampIcon.NOT_APPROVED | 2 | A “NotApproved” stamp. |
PdfRubberStampIcon.AS_IS | 3 | An “AsIs” stamp. |
PdfRubberStampIcon.EXPIRED | 4 | An “Expired” stamp. |
PdfRubberStampIcon.NOT_FOR_PUBLIC_RELEASE | 5 | A “NotForPublicRelease” stamp. |
PdfRubberStampIcon.CONFIDENTIAL | 6 | A “Confidential” stamp. |
PdfRubberStampIcon.FINAL | 7 | A “Final” stamp. |
PdfRubberStampIcon.SOLD | 8 | A “Sold” stamp. |
PdfRubberStampIcon.DEPARTMENTAL | 9 | A “Departmental” stamp. |
PdfRubberStampIcon.FOR_COMMENT | 10 | A “ForComment” stamp. |
PdfRubberStampIcon.TOP_SECRET | 11 | A “TopSecret” stamp. |
PdfRubberStampIcon.DRAFT | 12 | A “Draft” stamp. |
PdfRubberStampIcon.FOR_PUBLIC_RELEASE | 13 | A “ForPublicRelease” stamp. |
Usage Example
from nutrient import PdfRubberStampIcon
# Access enum valuesvalue = PdfRubberStampIcon.APPROVEDprint(f"Value: {value}") # Output: Value: PdfRubberStampIcon.APPROVEDprint(f"Integer value: {value.value}") # Output: Integer value: 0