Package org.apache.poi.wp.usermodel
Interface Paragraph
- 
- All Known Implementing Classes:
 XWPFParagraph
public interface ParagraphThis 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 intgetFirstLineIndent()intgetFontAlignment()intgetIndentFromLeft()intgetIndentFromRight()booleanisWordWrapped()voidsetFirstLineIndent(int first)voidsetFontAlignment(int align)voidsetIndentFromLeft(int dxaLeft)voidsetIndentFromRight(int dxaRight)voidsetWordWrapped(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)
 
 - 
 
 -