All files / src/types/enums OutputOption.ts

100% Statements 11/11
100% Branches 2/2
100% Functions 1/1
100% Lines 11/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 232x   2x   2x   2x   2x   2x   2x   2x   2x   2x     2x  
enum OutputOption {
  /** No options selected. (default) */
  BARCODE_NO_ASCII = 1,
  /** Boundary bars above and below the symbol and between rows if stacking. */
  BARCODE_BIND = 2,
  /** Add a box surrounding the symbol and whitespace. */
  BARCODE_BOX = 4,
  /** Add a reader initialisation symbol to the data before encoding. */
  READER_INIT = 16,
  /** Use a smaller font for the human readable text. */
  SMALL_TEXT = 32,
  /** Embolden the human readable text. */
  BOLD_TEXT = 64,
  /** Select the CMYK colour space option for encapsulated PostScript files. */
  CMYK_COLOUR = 128,
  /** Plot a matrix symbol using dots rather than squares. */
  BARCODE_DOTTY_MODE = 256,
  /** Use GS instead FNC1 as GS1 separator. */
  GS1_GS_SEPARATOR = 512
}
 
export default OutputOption