Java com.lowagie.text.pdf PdfPageLabels fields, constructors, methods, implement or subclass

Example usage for Java com.lowagie.text.pdf PdfPageLabels fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.lowagie.text.pdf PdfPageLabels.

The text is from its open source code.

Field

intDECIMAL_ARABIC_NUMERALS
Logical pages will have the form 1,2,3,...
intUPPERCASE_ROMAN_NUMERALS
Logical pages will have the form I,II,III,IV,...
intLOWERCASE_ROMAN_NUMERALS
Logical pages will have the form i,ii,iii,iv,...
intUPPERCASE_LETTERS
Logical pages will have the form of uppercase letters (A to Z for the first 26 pages, AA to ZZ for the next 26, and so on)
intLOWERCASE_LETTERS
Logical pages will have the form of uppercase letters (a to z for the first 26 pages, aa to zz for the next 26, and so on)
intEMPTY
No logical page numbers are generated but fixed text may still exist

Constructor

PdfPageLabels()
Creates a new PdfPageLabel with a default logical page 1

Method

voidaddPageLabel(int page, int numberStyle, String text, int firstPage)
Adds or replaces a page label.
voidaddPageLabel(int page, int numberStyle, String text)
Adds or replaces a page label.
String[]getPageLabels(PdfReader reader)
Retrieves the page labels from a PDF as an array of String objects.