public static final enum

OverlayLayoutParams.SizingMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pspdfkit.ui.overlay.OverlayLayoutParams.SizingMode

Class Overview

Value used for defining how measuring and layouting of the view will work.

Summary

Enum Values
OverlayLayoutParams.SizingMode  LAYOUT  Your view will be measured and laid out based on the page scroll and zoom. 
OverlayLayoutParams.SizingMode  SCALING  Your view will be measured and laid out based on zoom level 1 and a simple setScaleX(float) and setScaleY(float) will be applied to it based on the zoom. 
Public Methods
static OverlayLayoutParams.SizingMode valueOf(String name)
final static SizingMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final OverlayLayoutParams.SizingMode LAYOUT

Your view will be measured and laid out based on the page scroll and zoom.

public static final OverlayLayoutParams.SizingMode SCALING

Your view will be measured and laid out based on zoom level 1 and a simple setScaleX(float) and setScaleY(float) will be applied to it based on the zoom.

Public Methods

public static OverlayLayoutParams.SizingMode valueOf (String name)

public static final SizingMode[] values ()