# DocReaderOrientation

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

```java
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                    |
