Interface TableRule

All Superinterfaces:
TableObject
All Known Implementing Classes:
TableRuleImpl

public interface TableRule extends TableObject
Represents a rule. A rule is the line between two cells.
Since:
Epic 4.3
  • Method Details

    • getCellAbove

      TableCell getCellAbove()
      The cell above the rule if the rule is horizontal.
    • getCellRight

      TableCell getCellRight()
      The cell to the right of the rule if the rule is vertical.
    • getCellBelow

      TableCell getCellBelow()
      The cell below the rule if the rule is horizontal
    • getCellLeft

      TableCell getCellLeft()
      The cell to the left of the rule if the rule is vertical
    • getRuleAbove

      TableRule getRuleAbove()
      The rule above this rule. It will be parallel to this rule if it is a horizontal rule and join it end to end if it is a vertical rule
    • getRuleRight

      TableRule getRuleRight()
      The rule to the right of this rule. It will be parallel to this rule if it is a vertical rule and join it end to end if it is a horizontal rule
    • getRuleBelow

      TableRule getRuleBelow()
      The rule below this rule. It will be parallel to this rule if it is a horizontal rule and join it end to end if it is a vertical rule
    • getRuleLeft

      TableRule getRuleLeft()
      The rule to the left of this rule. It will be parallel to this rule if it is a vertical rule and join it end to end if it is a horizontal rule
    • getStartColumnIndex

      int getStartColumnIndex()
      The index of the starting column of the rule. This will be 1 for horizontal rules that start at the left edge of the grid or for vertical rules on the left edge of the grid.
    • getEndColumnIndex

      int getEndColumnIndex()
      The index of the ending column of the rule. This will be the number of columns plus 1 for vertical rules on the right edge of the grid.
    • getStartRowIndex

      int getStartRowIndex()
      The index of the starting row of the rule. This will be 1 for vertical rules that start at the top edge of the grid or for horizontal rules on the top edge of the grid.
    • getEndRowIndex

      int getEndRowIndex()
      The index of the ending row of the rule. This will be the number of rows plus 1 for horizontal rules on the bottom edge of the grid.
    • getSuppressed

      boolean getSuppressed()
      True if the rule is suppressed because it is inside a multicell (representing a spanned set of cells).
    • getOrientation

      short getOrientation()
      The orientation of the rule, that is, VERTICAL or HORIZONTAL.