public static final enum

PDFViewCtrl.PageViewMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pdftron.pdf.PDFViewCtrl.PageViewMode

Class Overview

Page view mode

Summary

Enum Values
PDFViewCtrl.PageViewMode  FIT_HEIGHT  Zoom is automatically adjusted so that the page height fits into available space. 
PDFViewCtrl.PageViewMode  FIT_PAGE  Zoom is automatically adjusted so that the entire page fits into available space. 
PDFViewCtrl.PageViewMode  FIT_WIDTH  Zoom is automatically adjusted so that the page width fits into available space. 
PDFViewCtrl.PageViewMode  NOT_DEFINED  Page view mode is not defined. 
PDFViewCtrl.PageViewMode  ZOOM  Page is zoomed, and the zoom factor is specified using setZoom(double) and its variants. 
Public Methods
int getValue()
static PDFViewCtrl.PageViewMode valueOf(String name)
static PDFViewCtrl.PageViewMode valueOf(int pageViewMode)
final static PageViewMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PDFViewCtrl.PageViewMode FIT_HEIGHT

Zoom is automatically adjusted so that the page height fits into available space.

public static final PDFViewCtrl.PageViewMode FIT_PAGE

Zoom is automatically adjusted so that the entire page fits into available space.

public static final PDFViewCtrl.PageViewMode FIT_WIDTH

Zoom is automatically adjusted so that the page width fits into available space.

public static final PDFViewCtrl.PageViewMode NOT_DEFINED

Page view mode is not defined.

public static final PDFViewCtrl.PageViewMode ZOOM

Page is zoomed, and the zoom factor is specified using setZoom(double) and its variants.

Public Methods

public int getValue ()

public static PDFViewCtrl.PageViewMode valueOf (String name)

public static PDFViewCtrl.PageViewMode valueOf (int pageViewMode)

public static final PageViewMode[] values ()