Package org.apache.poi.wp.usermodel
Interface Paragraph
-
- All Known Implementing Classes:
XWPFParagraph
public interface Paragraph
This class represents a paragraph, made up of one or more runs of text.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFirstLineIndent()
int
getFontAlignment()
int
getIndentFromLeft()
int
getIndentFromRight()
boolean
isWordWrapped()
void
setFirstLineIndent(int first)
void
setFontAlignment(int align)
void
setIndentFromLeft(int dxaLeft)
void
setIndentFromRight(int dxaRight)
void
setWordWrapped(boolean wrap)
-
-
-
Method Detail
-
getIndentFromRight
int getIndentFromRight()
-
setIndentFromRight
void setIndentFromRight(int dxaRight)
-
getIndentFromLeft
int getIndentFromLeft()
-
setIndentFromLeft
void setIndentFromLeft(int dxaLeft)
-
getFirstLineIndent
int getFirstLineIndent()
-
setFirstLineIndent
void setFirstLineIndent(int first)
-
getFontAlignment
int getFontAlignment()
-
setFontAlignment
void setFontAlignment(int align)
-
isWordWrapped
boolean isWordWrapped()
-
setWordWrapped
void setWordWrapped(boolean wrap)
-
-