Uses of Class
org.pentaho.reporting.engine.classic.core.ElementAlignment

Packages that use ElementAlignment
org.pentaho.reporting.engine.classic.core Main classes in the JFreeReport class library. 
org.pentaho.reporting.engine.classic.core.elementfactory Factory classes which make creating bands and elements more easier. 
org.pentaho.reporting.engine.classic.core.layout.model   
org.pentaho.reporting.engine.classic.core.layout.model.context   
org.pentaho.reporting.engine.classic.core.layout.output   
org.pentaho.reporting.engine.classic.core.modules.output.table.html The HTML4 and XHTML output target. 
org.pentaho.reporting.engine.classic.core.modules.parser.base Classes for reading XML-based report definitions. 
 

Uses of ElementAlignment in org.pentaho.reporting.engine.classic.core
 

Fields in org.pentaho.reporting.engine.classic.core declared as ElementAlignment
static ElementAlignment ElementAlignment.BOTTOM
          A constant for bottom alignment.
static ElementAlignment ElementAlignment.CENTER
          A constant for center alignment (horizontal).
static ElementAlignment ElementAlignment.JUSTIFY
           
static ElementAlignment ElementAlignment.LEFT
          A constant for left alignment.
static ElementAlignment ElementAlignment.MIDDLE
          A constant for middle alignment (vertical).
static ElementAlignment ElementAlignment.RIGHT
          A constant for right alignment.
static ElementAlignment ElementAlignment.TOP
          A constant for top alignment.
 

Uses of ElementAlignment in org.pentaho.reporting.engine.classic.core.elementfactory
 

Methods in org.pentaho.reporting.engine.classic.core.elementfactory that return ElementAlignment
 ElementAlignment ElementFactory.getHorizontalAlignment()
          Returns the horizontal alignment for the content of this element.
 ElementAlignment ElementFactory.getVerticalAlignment()
          Returns the vertical alignment for the content of this element.
 

Methods in org.pentaho.reporting.engine.classic.core.elementfactory with parameters of type ElementAlignment
static Element DateFieldElementFactory.createDateElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullString, DateFormat format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element DateFieldElementFactory.createDateElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullString, String format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element DateFieldElementFactory.createDateElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, FontDefinition font, String nullString, DateFormat format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element DateFieldElementFactory.createDateElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, FontDefinition font, String nullString, String format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element LabelElementFactory.createLabelElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String labeltext)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element LabelElementFactory.createLabelElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, FontDefinition font, String labeltext)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element MessageFieldElementFactory.createMessageElement(String name, Rectangle2D bounds, Color color, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullString, String formatString)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element MessageFieldElementFactory.createMessageElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, FontDefinition font, String nullString, String format)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element NumberFieldElementFactory.createNumberElement(String name, Rectangle2D bounds, Color color, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullString, NumberFormat format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element NumberFieldElementFactory.createNumberElement(String name, Rectangle2D bounds, Color color, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullString, String format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element NumberFieldElementFactory.createNumberElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, FontDefinition font, String nullString, NumberFormat format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element NumberFieldElementFactory.createNumberElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, FontDefinition font, String nullString, String format, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element ResourceFieldElementFactory.createResourceElement(String name, Rectangle2D bounds, Color color, ElementAlignment alignment, ElementAlignment valignment, FontDefinition font, String nullValue, String resourceBase, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element ResourceLabelElementFactory.createResourceLabel(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullValue, String resourceBase, String resourceKey)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element ResourceMessageElementFactory.createResourceMessage(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullValue, String resourceBase, String resourceKey)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element TextFieldElementFactory.createStringElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, ElementAlignment valign, FontDefinition font, String nullString, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
static Element TextFieldElementFactory.createStringElement(String name, Rectangle2D bounds, Color paint, ElementAlignment alignment, FontDefinition font, String nullString, String field)
          Deprecated. Use a more fine-grained approach to define this element by using the element-factory directly.
 void ElementFactory.setHorizontalAlignment(ElementAlignment horizontalAlignment)
          Defines the horizontal alignment for the content of this element.
 void ElementFactory.setVerticalAlignment(ElementAlignment verticalAlignment)
          Defines the vertical alignment for the content of this element.
 

Uses of ElementAlignment in org.pentaho.reporting.engine.classic.core.layout.model
 

Methods in org.pentaho.reporting.engine.classic.core.layout.model that return ElementAlignment
 ElementAlignment ParagraphRenderBox.getLastLineAlignment()
           
 ElementAlignment ParagraphRenderBox.getTextAlignment()
           
 

Uses of ElementAlignment in org.pentaho.reporting.engine.classic.core.layout.model.context
 

Methods in org.pentaho.reporting.engine.classic.core.layout.model.context that return ElementAlignment
 ElementAlignment NodeLayoutProperties.getVerticalAlignment()
           
 

Uses of ElementAlignment in org.pentaho.reporting.engine.classic.core.layout.output
 

Methods in org.pentaho.reporting.engine.classic.core.layout.output with parameters of type ElementAlignment
static long RenderUtility.computeHorizontalAlignment(ElementAlignment alignment, long width, long imageWidth)
           
static long RenderUtility.computeVerticalAlignment(ElementAlignment alignment, long height, long imageHeight)
           
 

Uses of ElementAlignment in org.pentaho.reporting.engine.classic.core.modules.output.table.html
 

Methods in org.pentaho.reporting.engine.classic.core.modules.output.table.html with parameters of type ElementAlignment
static String HtmlPrinter.translateHorizontalAlignment(ElementAlignment ea)
          Translates the JFreeReport horizontal element alignment into a HTML alignment constant.
 

Uses of ElementAlignment in org.pentaho.reporting.engine.classic.core.modules.parser.base
 

Methods in org.pentaho.reporting.engine.classic.core.modules.parser.base that return ElementAlignment
static ElementAlignment ReportParserUtil.parseHorizontalElementAlignment(String value, Locator locator)
          Parses a horizontal alignment value.
static ElementAlignment ReportParserUtil.parseVerticalElementAlignment(String value, Locator locator)
          Parses a vertical alignment value.