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
Modifier and TypeMethodDescriptionint
int
int
int
boolean
void
setFirstLineIndent
(int first) void
setFontAlignment
(int align) void
setIndentFromLeft
(int dxaLeft) void
setIndentFromRight
(int dxaRight) void
setWordWrapped
(boolean wrap)
-
Method Details
-
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)
-