DocReaderOrientation

This page covers the description of the DocReaderOrientation enumeration

The constants of DocReaderOrientation enumeration identify the application's orientation.

public class DocReaderOrientation {
    public static final int ROTATE = 0;
    public static final int PORTRAIT = 1;
    public static final int LANDSCAPE = 2;
}

Constant

Description

ROTATE

Both portrait and landscape modes

PORTRAIT

Portrait mode

LANDSCAPE

Landscape mode

Last updated