|
| 1 | + /** |
| 2 | + * |
| 3 | + * Copyright (c) 2018 Aspose.PDF Cloud |
| 4 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 5 | + * of this software and associated documentation files (the "Software"), to deal |
| 6 | + * in the Software without restriction, including without limitation the rights |
| 7 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 8 | + * copies of the Software, and to permit persons to whom the Software is |
| 9 | + * furnished to do so, subject to the following conditions: |
| 10 | + * The above copyright notice and this permission notice shall be included in all |
| 11 | + * copies or substantial portions of the Software. |
| 12 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 13 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 14 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 15 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 16 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 17 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 18 | + * SOFTWARE. |
| 19 | + * |
| 20 | + */ |
| 21 | +package asposepdfcloud |
| 22 | +// AnnotationType : |
| 23 | +type AnnotationType string |
| 24 | + |
| 25 | +// List of AnnotationType |
| 26 | +const ( |
| 27 | + AnnotationTypeText AnnotationType = "Text" |
| 28 | + AnnotationTypeCircle AnnotationType = "Circle" |
| 29 | + AnnotationTypePolygon AnnotationType = "Polygon" |
| 30 | + AnnotationTypePolyLine AnnotationType = "PolyLine" |
| 31 | + AnnotationTypeLine AnnotationType = "Line" |
| 32 | + AnnotationTypeSquare AnnotationType = "Square" |
| 33 | + AnnotationTypeFreeText AnnotationType = "FreeText" |
| 34 | + AnnotationTypeHighlight AnnotationType = "Highlight" |
| 35 | + AnnotationTypeUnderline AnnotationType = "Underline" |
| 36 | + AnnotationTypeSquiggly AnnotationType = "Squiggly" |
| 37 | + AnnotationTypeStrikeOut AnnotationType = "StrikeOut" |
| 38 | + AnnotationTypeCaret AnnotationType = "Caret" |
| 39 | + AnnotationTypeInk AnnotationType = "Ink" |
| 40 | + AnnotationTypeLink AnnotationType = "Link" |
| 41 | + AnnotationTypePopup AnnotationType = "Popup" |
| 42 | + AnnotationTypeFileAttachment AnnotationType = "FileAttachment" |
| 43 | + AnnotationTypeSound AnnotationType = "Sound" |
| 44 | + AnnotationTypeMovie AnnotationType = "Movie" |
| 45 | + AnnotationTypeScreen AnnotationType = "Screen" |
| 46 | + AnnotationTypeWidget AnnotationType = "Widget" |
| 47 | + AnnotationTypeWatermark AnnotationType = "Watermark" |
| 48 | + AnnotationTypeTrapNet AnnotationType = "TrapNet" |
| 49 | + AnnotationTypePrinterMark AnnotationType = "PrinterMark" |
| 50 | + AnnotationTypeRedaction AnnotationType = "Redaction" |
| 51 | + AnnotationTypeStamp AnnotationType = "Stamp" |
| 52 | + AnnotationTypeRichMedia AnnotationType = "RichMedia" |
| 53 | + AnnotationTypeUnknown AnnotationType = "Unknown" |
| 54 | + AnnotationTypePDF3D AnnotationType = "PDF3D" |
| 55 | +) |
0 commit comments