CutOptions

The Brady SDK CutOptions object is an enumeration that represents when to perform a cut operation during the print job.

  • EndOfJob: Performs a cut at the end of the entire print job.
  • EndOfLabel: Performs a cut at the end of each label.
  • Never: Never performs a cut operation throughout the print.
  • CutAfterRow: Performs a cut at the end of a specified row of labels.
    • This cut option is only supported on the M611, S3700, i5300, and i7500 printers. An SdkApiException will be thrown if used with an unsupported printer.
    • Must be used with the "PrintingOptions.cutAfterRowValue" method. For example, "printingOptions.cutAfterRowValue = 2" will tell the printer to cut after every 2 labels.
  • UsePrinterSettings: Uses the printer settings configured on the printer to determine when to perform a cut. This cut option is only supported on the i7500 printer. An SdkException will be thrown if used with an unsupported printer.