newCustomDiaCutPaper static method

CustomPaperInfo newCustomDiaCutPaper(
  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 labelPitch,
)

Implementation

static CustomPaperInfo newCustomDiaCutPaper(Model printerModel, Unit unit, double tapeWidth, double tapeLength, double rightMargin, double leftMargin, double topMargin, double bottomMargin, double labelPitch) {
  return new CustomPaperInfo._internal(printerModel, PaperKind.DIE_CUT, unit, tapeWidth, tapeLength, rightMargin, leftMargin, topMargin, bottomMargin, labelPitch, 0.0, 0.0);
}