Example usage for com.lowagie.text Paragraph getIndentationLeft

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

Introduction

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

Prototype

public float getIndentationLeft() 

Source Link

Document

Gets the indentation of this paragraph on the left 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());
}