PSPDFScrubberBarType

Objective-C

enum PSPDFScrubberBarType : NSUInteger {}

Swift

@frozen enum ScrubberBarType : UInt, @unchecked Sendable

Defines where the scrubber but should be shown.

  • The default style: A scrubber bar that lays out its thumbnails along its width.

    Declaration

    Objective-C

    PSPDFScrubberBarTypeHorizontal

    Swift

    case horizontal = 0
  • Style for a scrubber bar that lays out its thumbnails along its height and sits along the left edge of its container. (I.e. it draws a border on its right–hand side.)

    Declaration

    Objective-C

    PSPDFScrubberBarTypeVerticalLeft

    Swift

    case verticalLeft = 1
  • Style for a scrubber bar that lays out its thumbnails along its height and sits along the right edge of its container view. (I.e. it draws a border on its left–hand side.)

    Declaration

    Objective-C

    PSPDFScrubberBarTypeVerticalRight

    Swift

    case verticalRight = 2