RGLDocReaderAction

This page covers the description of the RGLDocReaderAction enumeration

RGLDocReaderAction enumeration contains all possible notification codes about reading process.

typedef NS_ENUM(NSInteger, RGLDocReaderAction) {
  RGLDocReaderActionComplete = 0,
  RGLDocReaderActionProcess = 1,
  RGLDocReaderActionMorePagesAvailable = 2,
  RGLDocReaderActionCancel = 3,
  RGLDocReaderActionError = 4,
} NS_SWIFT_NAME(DocReaderAction);

Constant

Description

RGLDocReaderActionComplete

Processing finished, the results were received

RGLDocReaderActionProcess

Processing didn't finish, intermediate results may be obtained

RGLDocReaderActionMorePagesAvailable

Processing completed for a single page

RGLDocReaderActionCancel

Processing was cancelled, incomplete results may be obtained

RGLDocReaderActionError

An error occurred during processing, incomplete results may be obtained

Last updated

Was this helpful?