Uses of Class
org.apache.poi.xwpf.usermodel.TextAlignment

Packages that use TextAlignment
org.apache.poi.xwpf.usermodel   
 

Uses of TextAlignment in org.apache.poi.xwpf.usermodel
 

Fields in org.apache.poi.xwpf.usermodel declared as TextAlignment
static TextAlignment TextAlignment.AUTO
          Specifies that all text in the parent object shall be aligned automatically when displayed.
static TextAlignment TextAlignment.BASELINE
          Specifies that all text in the parent object shall be aligned to the baseline of each character when displayed.
static TextAlignment TextAlignment.BOTTOM
          Specifies that all text in the parent object shall be aligned to the bottom of each character when displayed.
static TextAlignment TextAlignment.CENTER
          Specifies that all text in the parent object shall be aligned to the center of each character when displayed.
static TextAlignment TextAlignment.TOP
          Specifies that all text in the parent object shall be aligned to the top of each character when displayed
 

Methods in org.apache.poi.xwpf.usermodel that return TextAlignment
 TextAlignment XWPFParagraph.getVerticalAlignment()
          Returns the text vertical alignment which shall be applied to text in this paragraph.
static TextAlignment TextAlignment.valueOf(int type)
           
static TextAlignment[] TextAlignment.values()
           
 

Methods in org.apache.poi.xwpf.usermodel with parameters of type TextAlignment
 void XWPFParagraph.setVerticalAlignment(TextAlignment valign)
          Specifies the text vertical alignment which shall be applied to text in this paragraph.