Example usage for org.apache.pdfbox.pdmodel PageLayout TWO_COLUMN_LEFT

List of usage examples for org.apache.pdfbox.pdmodel PageLayout TWO_COLUMN_LEFT

Introduction

In this page you can find the example usage for org.apache.pdfbox.pdmodel PageLayout TWO_COLUMN_LEFT.

Prototype

PageLayout TWO_COLUMN_LEFT

To view the source code for org.apache.pdfbox.pdmodel PageLayout TWO_COLUMN_LEFT.

Click Source Link

Document

Display the pages in two columns), with odd numbered pages on the left.

Usage

From source file:org.pdfsam.pdfbox.component.PDDocumentHandlerTest.java

License:Open Source License

@Test
public void setPageLayout() {
    victim.setPageLayout(PageLayout.TWO_COLUMN_LEFT);
    verify(catalog).setPageLayout(PageLayout.TWO_COLUMN_LEFT);
}