RGLDocReaderFrame
Objective-C
NS_ENUM(NSInteger, RGLDocReaderFrame) {
/// Size of the frame depends on the scenario, that means default values are used
RGLDocReaderFrameScenarioDefault = 0,
/// Full frame
RGLDocReaderFrameMax = 1,
/// No frame
RGLDocReaderFrameNone = 2,
/// Size of the frame corresponds to the ID-3 format in the portrait mode and to the ID-1 in the landscape mode
RGLDocReaderFrameDocument = 3
}
Swift
enum DocReaderFrame : Int, @unchecked Sendable
Undocumented
-
Size of the frame depends on the scenario, that means default values are used
Declaration
Objective-C
RGLDocReaderFrameScenarioDefault = 0
Swift
case scenarioDefault = 0
-
Full frame
Declaration
Objective-C
RGLDocReaderFrameMax = 1
Swift
case max = 1
-
No frame
Declaration
Objective-C
RGLDocReaderFrameNone = 2
Swift
case none = 2
-
Size of the frame corresponds to the ID-3 format in the portrait mode and to the ID-1 in the landscape mode
Declaration
Objective-C
RGLDocReaderFrameDocument = 3
Swift
case document = 3