Uses of Class
com.arctorus.documents.VerticalAlignmentType

Packages that use VerticalAlignmentType
com.arctorus.documents   
com.arctorus.documents.table   
 

Uses of VerticalAlignmentType in com.arctorus.documents
 

Methods in com.arctorus.documents that return VerticalAlignmentType
 VerticalAlignmentType TextBox.getVerticalAlignment()
          Get vertical text alignment in a text box.
static VerticalAlignmentType VerticalAlignmentType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VerticalAlignmentType[] VerticalAlignmentType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in com.arctorus.documents with parameters of type VerticalAlignmentType
 void TextBox.setVerticalAlignment(VerticalAlignmentType verticalAlignment)
          Set vertical text alignment in a text box.
 

Uses of VerticalAlignmentType in com.arctorus.documents.table
 

Methods in com.arctorus.documents.table that return VerticalAlignmentType
 VerticalAlignmentType CellStyle.getVerticalAlignment()
          Get vertical alignment of a cell content.
 

Methods in com.arctorus.documents.table with parameters of type VerticalAlignmentType
 CellStyle CellStyleManager.createCellStyle(FillFormat fillFormat, HorizontalAlignmentType horizontalAlignment, VerticalAlignmentType verticalAlignment)
          Creates NEW cell style with the specified fill format, vertical and horizontal alignment.
 CellStyle CellStyleManager.createCellStyle(FillFormat fillFormat, HorizontalAlignmentType horizontalAlignment, VerticalAlignmentType verticalAlignment, boolean shrinkToFit, boolean wrapText, TextRotationType textRotationType)
          Creates NEW cell style with the specified parameters.
 CellStyle CellStyleManager.findCellStyle(FillFormat fillFormat, HorizontalAlignmentType horizontalAlignment, VerticalAlignmentType verticalAlignment, boolean shrinkToFit, boolean wrapText)
          Returns existing cell style with the specified parameters and TextRotationType.DEFAULT.
 CellStyle CellStyleManager.findCellStyle(FillFormat fillFormat, HorizontalAlignmentType horizontalAlignment, VerticalAlignmentType verticalAlignment, boolean shrinkToFit, boolean wrapText, TextRotationType textRotationType)
          Returns existing cell style with the specified parameters.
 void CellStyle.setVerticalAlignment(VerticalAlignmentType verticalAlignment)
          Set vertical alignment of a cell.