PSPDFLibraryIndexStatus
Objective-C
enum PSPDFLibraryIndexStatus {}
Swift
@frozen enum IndexStatus : UInt
Represents the status of a document in the library.
-
Not in library.
Declaration
Objective-C
PSPDFLibraryIndexStatusUnknown
Swift
case unknown = 0
-
The document is queued for indexing.
Declaration
Objective-C
PSPDFLibraryIndexStatusQueued
Swift
case queued = 1
-
The document has been partially indexed.
Declaration
Objective-C
PSPDFLibraryIndexStatusPartial
Swift
case partial = 2
-
The document has been partially indexed, and is currently being indexed.
Declaration
Objective-C
PSPDFLibraryIndexStatusPartialAndIndexing
Swift
case partialAndIndexing = 3
-
The document is indexed.
Declaration
Objective-C
PSPDFLibraryIndexStatusFinished
Swift
case finished = 4