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 = 0Swift
case scenarioDefault = 0 -
Full frame
Declaration
Objective-C
RGLDocReaderFrameMax = 1Swift
case max = 1 -
No frame
Declaration
Objective-C
RGLDocReaderFrameNone = 2Swift
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 = 3Swift
case document = 3