Class FontInfo

java.lang.Object
de.elo.ix.client.FontInfo
All Implemented Interfaces:
Serializable

public class FontInfo extends Object implements Serializable
This class describes a font.
Since:
7.00.000.023
See Also:
  • Field Details

    • faceName

      protected String faceName
      Font face name
    • bold

      protected boolean bold
      Bold
    • italic

      protected boolean italic
      Italic
    • strikeOut

      protected boolean strikeOut
      Strike out
    • underline

      protected boolean underline
      Underline
    • RGB

      protected int RGB
      Read-green-blue value. On byte each color. Read is at the lowest significant byte.
    • height

      protected int height
      Font heigth.
    • heightPerCell

      protected boolean heightPerCell
      The font height is related to the cell height of the font rather than the character heigth.
    • escapement

      protected int escapement
      Specifies the angle, in tenths of degrees, between the escapement vector and the x-axis of the device. The escapement vector is parallel to the base line of a row of text.
  • Constructor Details

    • FontInfo

      public FontInfo()
    • FontInfo

      public FontInfo(FontInfo rhs)
  • Method Details

    • getFaceName

      public String getFaceName()
    • setFaceName

      public void setFaceName(String name)
    • isBold

      public boolean isBold()
    • setBold

      public void setBold(boolean bold)
    • isItalic

      public boolean isItalic()
    • setItalic

      public void setItalic(boolean italic)
    • isStrikeOut

      public boolean isStrikeOut()
    • setStrikeOut

      public void setStrikeOut(boolean strikeout)
    • isUnderline

      public boolean isUnderline()
    • setUnderline

      public void setUnderline(boolean underline)
    • getRGB

      public int getRGB()
    • setRGB

      public void setRGB(int rgb)
    • getHeight

      public int getHeight()
    • setHeight

      public void setHeight(int height)
    • isHeightPerCell

      public boolean isHeightPerCell()
    • setHeightPerCell

      public void setHeightPerCell(boolean heightPerCell)
    • getEscapement

      public int getEscapement()
    • setEscapement

      public void setEscapement(int escapement)
    • toString

      public String toString()
      Overrides:
      toString in class Object