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

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

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

Fields in org.apache.poi.xwpf.usermodel declared as LineSpacingRule
static LineSpacingRule LineSpacingRule.AT_LEAST
          Specifies that the height of the line shall be at least the value specified, but may be expanded to fit its content as needed.
static LineSpacingRule LineSpacingRule.AUTO
          Specifies that the line spacing of the parent object shall be automatically determined by the size of its contents, with no predetermined minimum or maximum size.
static LineSpacingRule LineSpacingRule.EXACT
          Specifies that the height of the line shall be exactly the value specified, regardless of the size of the contents If the contents are too large for the specified height, then they shall be clipped as necessary.
 

Methods in org.apache.poi.xwpf.usermodel that return LineSpacingRule
 LineSpacingRule XWPFParagraph.getSpacingLineRule()
          Specifies how the spacing between lines is calculated as stored in the line attribute.
static LineSpacingRule LineSpacingRule.valueOf(int type)
           
static LineSpacingRule[] LineSpacingRule.values()
           
 

Methods in org.apache.poi.xwpf.usermodel with parameters of type LineSpacingRule
 void XWPFParagraph.setSpacingLineRule(LineSpacingRule rule)
          Specifies how the spacing between lines is calculated as stored in the line attribute.