RGLDocReaderOrientation

Objective-C

NS_ENUM(NSInteger, RGLDocReaderOrientation) {
    /// Both portrait and landscape modes
    RGLDocReaderOrientationRotate = 0,
    /// Portrait mode
    RGLDocReaderOrientationPortrait = 1,
    /// Landscape mode
    RGLDocReaderOrientationLandscape = 2
}

Swift

enum DocReaderOrientation : Int, @unchecked Sendable

Undocumented