Package com.itextpdf.text.api
Interface Indentable
-
- All Known Implementing Classes:
Chapter
,ChapterAutoNumber
,GreekList
,Image
,ImgCCITT
,ImgJBIG2
,ImgRaw
,ImgTemplate
,ImgWMF
,Jpeg
,Jpeg2000
,List
,ListItem
,MarkedSection
,NoNewLineParagraph
,Paragraph
,RomanList
,Section
,ZapfDingbatsList
,ZapfDingbatsNumberList
public interface Indentable
Objects implementing Indentable allow to set indentation left and right.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getIndentationLeft()
Gets the indentation on the left side.float
getIndentationRight()
Gets the indentation on the right side.void
setIndentationLeft(float indentation)
Sets the indentation on the left side.void
setIndentationRight(float indentation)
Sets the indentation on the right side.
-
-
-
Method Detail
-
setIndentationLeft
void setIndentationLeft(float indentation)
Sets the indentation on the left side.- Parameters:
indentation
- the new indentation
-
setIndentationRight
void setIndentationRight(float indentation)
Sets the indentation on the right side.- Parameters:
indentation
- the new indentation
-
getIndentationLeft
float getIndentationLeft()
Gets the indentation on the left side.- Returns:
- the indentation
-
getIndentationRight
float getIndentationRight()
Gets the indentation on the right side.- Returns:
- the indentation
-
-