12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #import <ComPDFKit/CPDFAnnotation.h>
- typedef NS_ENUM(NSInteger, CPDFMarkupType) {
- CPDFMarkupTypeHighlight = 0,
- CPDFMarkupTypeStrikeOut = 1,
- CPDFMarkupTypeUnderline = 2,
- CPDFMarkupTypeSquiggly = 3
- };
- @interface CPDFMarkupAnnotation : CPDFAnnotation
- - (instancetype)initWithDocument:(CPDFDocument *)document markupType:(CPDFMarkupType)markupType;
- @property (nonatomic,retain) NSArray *quadrilateralPoints;
- - (CPDFMarkupType)markupType;
- - (NSString *)markupText;
- - (void)setMarkupText:(NSString *)text;
- - (BOOL)popup;
- - (void)createPopup;
- - (void)removePopup;
- @end
|