newCustomMarkRollPaper static method

CustomPaperInfo newCustomMarkRollPaper(
  1. Model printerModel,
  2. Unit unit,
  3. double tapeWidth,
  4. double tapeLength,
  5. double rightMargin,
  6. double leftMargin,
  7. double topMargin,
  8. double bottomMargin,
  9. double markPosition,
  10. double markHeight,
)

Implementation

static CustomPaperInfo newCustomMarkRollPaper(Model printerModel, Unit unit, double tapeWidth, double tapeLength, double rightMargin, double leftMargin, double topMargin, double bottomMargin, double markPosition, double markHeight) {
  return new CustomPaperInfo._internal(printerModel, PaperKind.MARKED_ROLL, unit, tapeWidth, tapeLength, rightMargin, leftMargin, topMargin, bottomMargin, 0.0, markPosition, markHeight);
}