Class LabelFormat

java.lang.Object
com.inductiveautomation.rm.shape.LabelFormat
All Implemented Interfaces:
Comparable<LabelFormat>

public class LabelFormat extends Object implements Comparable<LabelFormat>
Filename: LabelFormat Author: Perry Arellano-Jones Created on: 7/27/15 Project: ignition_dev_7_8B A shared class that holds the size information about the format of a RMLabel.
  • Field Details

    • formatMap

      public static final Map<String,LabelFormat> formatMap
    • labelWidth

      public double labelWidth
    • labelHeight

      public double labelHeight
    • spacingX

      public double spacingX
    • spacingY

      public double spacingY
    • pageWidth

      public double pageWidth
    • pageHeight

      public double pageHeight
    • topMargin

      public double topMargin
    • leftMargin

      public double leftMargin
    • bottomMargin

      public double bottomMargin
    • rightMargin

      public double rightMargin
    • rowCount

      public int rowCount
    • colCount

      public int colCount
    • formatName

      public String formatName
  • Constructor Details

    • LabelFormat

      public LabelFormat(String name, double width, double height, double spacingWidth, double spacingHeight, int rows, int cols, double pageWidth, double pageHeight, double topMargin, double leftMargin, double bottomMargin, double rightMargin)
      Creates a new label format.
    • LabelFormat

      public LabelFormat()
    • LabelFormat

      public LabelFormat(RMLabels label)
    • LabelFormat

      public LabelFormat(String name, double labelWidth, double labelHeight, double spacingWidth, double spacingHeight, int rows, int cols, double width, double height)
  • Method Details