PSPDFSearchResultScope

Objective-C

NS_CLOSED_ENUM(NSInteger, PSPDFSearchResultScope) {
    /// The search results shown with this scope are all from a given page range.
    PSPDFSearchResultScopePageRange,
    /// The search results shown with this scope are from the whole document.
    PSPDFSearchResultScopeDocument,
}

Swift

@frozen enum ResultScope : Int, @unchecked Sendable

Undocumented

  • The search results shown with this scope are all from a given page range.

    Declaration

    Objective-C

    PSPDFSearchResultScopePageRange

    Swift

    case pageRange = 0
  • The search results shown with this scope are from the whole document.

    Declaration

    Objective-C

    PSPDFSearchResultScopeDocument

    Swift

    case document = 1