PSPDFAnnotationChange

Objective-C

enum PSPDFAnnotationChange {}

Swift

@frozen enum AnnotationChange : Int

Specifies how a annotation should be included in the resulting document. See modifyAnnotationsOfType:change: and modifyAnnotations:change:error:.

  • The annotation will be flattened. It can no longer be modified in the resulting document.

    Declaration

    Objective-C

    PSPDFAnnotationChangeFlatten

    Swift

    case flatten = 0
  • The annotation will be removed.

    Declaration

    Objective-C

    PSPDFAnnotationChangeRemove

    Swift

    case remove = 1
  • The annotation will be embedded into the resulting document, allowing it to still be modified.

    Declaration

    Objective-C

    PSPDFAnnotationChangeEmbed

    Swift

    case embed = 2
  • Processes the document for printing. Flattens annotations that can be printed, removes the remaining ones.

    Declaration

    Objective-C

    PSPDFAnnotationChangePrint

    Swift

    case print = 3