Example usage for com.lowagie.text Paragraph getIndentationRight

List of usage examples for com.lowagie.text Paragraph getIndentationRight

Introduction

In this page you can find the example usage for com.lowagie.text Paragraph getIndentationRight.

Prototype

public float getIndentationRight() 

Source Link

Document

Gets the indentation of this paragraph on the right side.

Usage

From source file:fr.opensagres.xdocreport.itext.extension.ExtendedParagraph.java

License:Open Source License

public void setIndentation(Paragraph paragraph) {
    setIndentationLeft(paragraph.getIndentationLeft());
    setIndentationRight(paragraph.getIndentationRight());
}