public final enum

PageLayoutMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pspdfkit.configuration.page.PageLayoutMode

Class Overview

Describes how the pages will be laid out in the document view.

Summary

Enum Values
PageLayoutMode  AUTO  Pages will be adapted to the screen, so on the larger devices in landscape orientation a double page mode will be used, compared to a single page mode otherwise. 
PageLayoutMode  DOUBLE  Pages will always be displayed in the double page mode. 
PageLayoutMode  SINGLE  Pages will always be displayed in the single page mode. 
Public Methods
static PageLayoutMode valueOf(String name)
final static PageLayoutMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PageLayoutMode AUTO

Pages will be adapted to the screen, so on the larger devices in landscape orientation a double page mode will be used, compared to a single page mode otherwise.

public static final PageLayoutMode DOUBLE

Pages will always be displayed in the double page mode.

public static final PageLayoutMode SINGLE

Pages will always be displayed in the single page mode.

Public Methods

public static PageLayoutMode valueOf (String name)

public static final PageLayoutMode[] values ()