# DocReaderFrame

The constants of `DocReaderFrame` enumeration identify the frame type.

```java
public class DocReaderFrame {
    public static final String MAX = "max";
    public static final String SCENARIO_DEFAULT = "id1";
    public static final String NONE = "none";
    public static final String DOCUMENT = "document";
}
```

| Constant              | Description                                                                                                 |
| --------------------- | ----------------------------------------------------------------------------------------------------------- |
| **MAX**               | Full frame                                                                                                  |
| **SCENARIO\_DEFAULT** | Size of the frame depends on the scenario, i.e. default values are used                                     |
| **NONE**              | No frame                                                                                                    |
| **DOCUMENT**          | Size of the frame corresponds to the ID-3 format in the portrait mode and to the ID-1 in the landscape mode |
