clause method

  1. @override
CommandClause clause()
override

Implementation

@override
CommandClause clause() {
  return TSPLCommand(header: header())
      .appendNumber(_x)
      .appendNumber(_y)
      .append(TextAppendat.create(_codeType.getType()).quote())
      .appendNumber(_height)
      .appendNumber(_showType.getShowType())
      .appendText(_rotation.getRotation())
      .appendNumber(_cellwidth)
      .appendNumber(_cellwidth)
      .append(TextAppendat.create(_content).quote())
      .clause();
}