PSPDFBookmarkIndicatorImageType

Objective-C

enum PSPDFBookmarkIndicatorImageType : NSInteger {}

Swift

@frozen enum ImageType : Int, @unchecked Sendable

Indicates the type of image the bookmark indicator button should use.

  • Specifies the large (22pt x 36pt) bookmark image. Images used are: bookmark-large-color, bookmark-large-shadow

    Declaration

    Objective-C

    PSPDFBookmarkIndicatorImageTypeLarge

    Swift

    case large = 0
  • Specifies the medium (11pt x 18pt) bookmark image. Images used are: bookmark-medium-color, bookmark-medium-shadow

    Declaration

    Objective-C

    PSPDFBookmarkIndicatorImageTypeMedium

    Swift

    case medium = 1
  • Specifies the small (7pt x 12pt) bookmark image. Images used are: bookmark-small-color, bookmark-small-shadow

    Declaration

    Objective-C

    PSPDFBookmarkIndicatorImageTypeSmall

    Swift

    case small = 2