PSPDFAnnotationZIndexMove

Objective-C

enum PSPDFAnnotationZIndexMove : NSInteger {}

Swift

@frozen enum ZIndexMove : Int, @unchecked Sendable

Defines the z-index position where an annotation should be moved to.

  • Move the annotation to the front of the z-index stack.

    Declaration

    Objective-C

    PSPDFAnnotationZIndexMoveToFront

    Swift

    case toFront = 0
  • Move the annotation one position forward on the z-index stack.

    Declaration

    Objective-C

    PSPDFAnnotationZIndexMoveForward

    Swift

    case forward = 1
  • Move the annotation one position backward on the z-index stack.

    Declaration

    Objective-C

    PSPDFAnnotationZIndexMoveBackward

    Swift

    case backward = 2
  • Move the annotation to the back of the z-index stack.

    Declaration

    Objective-C

    PSPDFAnnotationZIndexMoveToBack

    Swift

    case toBack = 3