PSPDFThumbnailFlowLayoutLineAlignment

Objective-C

enum PSPDFThumbnailFlowLayoutLineAlignment : NSInteger {}

Swift

@frozen enum LineAlignment : Int, @unchecked Sendable

Define the alignment of the thumbnail collection view.

  • Layouts a line so that its items are left aligned inside the collection view.

    Declaration

    Objective-C

    PSPDFThumbnailFlowLayoutLineAlignmentLeft

    Swift

    case left = 0
  • Layouts a line so that its items are centered inside the collection view.

    Declaration

    Objective-C

    PSPDFThumbnailFlowLayoutLineAlignmentCenter

    Swift

    case center = 1
  • Layouts a line so that its items are right aligned inside the collection view.

    Declaration

    Objective-C

    PSPDFThumbnailFlowLayoutLineAlignmentRight

    Swift

    case right = 2
  • Layouts a line so that its items are aligned alongside the contents page binding. (Default value)

    Declaration

    Objective-C

    PSPDFThumbnailFlowLayoutLineAlignmentPageBinding

    Swift

    case pageBinding = 3