PTPDFAnnotationChange
@interface PTPDFAnnotationChange : NSObjectInstances of this class represent annotation changes (add, modify, remove, etc.).
- 
                  
                  Initializes a newly created PTPDFAnnotationChangeinstance.DeclarationObjective-C - (nonnull instancetype)initWithChangeType:(PTPDFAnnotationChangeType)type forAnnotation:(nonnull PTAnnot *)annotation onPageNumber:(int)pageNumber;Swift init(changeType type: PTPDFAnnotationChange.ChangeType, forAnnotation annotation: PTAnnot, onPageNumber pageNumber: Int32)ParameterstypeThe type of this change annotationThe annotation involved in the change pageNumberThe PDF page number of the annotation Return Valuean initialized instance of the PTPDFAnnotationChangeclass
- 
                  
                  Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  The type of this change. DeclarationObjective-C @property (nonatomic, readonly) PTPDFAnnotationChangeType type;Swift var type: PTPDFAnnotationChange.ChangeType { get }
- 
                  
                  The PDF page number of this change’s annotation.DeclarationObjective-C @property (nonatomic, readonly) int pageNumber;Swift var pageNumber: Int32 { get }
- 
                  
                  Returns whether the receiver and the specified PTPDFAnnotationChangeinstance are equal.DeclarationObjective-C - (BOOL)isEqualToChange:(nonnull PTPDFAnnotationChange *)change;Swift func isEqual(to change: PTPDFAnnotationChange) -> BoolParameterschangeThe other PTPDFAnnotationChangeinstance to compare for equalityReturn ValueYESif the receiver is equal to the specified change,NOotherwise
- 
                  
                  Creates a new PTPDFAnnotationChangeinstance initialized with the specified parameters.DeclarationObjective-C + (nonnull instancetype)changeWithType:(PTPDFAnnotationChangeType)type forAnnotation:(nonnull PTAnnot *)annotation onPageNumber:(int)pageNumber;Swift convenience init(type: PTPDFAnnotationChange.ChangeType, forAnnotation annotation: PTAnnot, onPageNumber pageNumber: Int32)ParameterstypeThe type of the change annotationThe annotation involved in the change pageNumberThe PDF page number of the annotation Return Valuean initialized instance of the PTPDFAnnotationChangeclass
 PTPDFAnnotationChange Class Reference
        PTPDFAnnotationChange Class Reference