Type alias SymbologySpec

SymbologySpec: {
    maxLen?: number;
    minLen?: number;
    name: SymbologyName;
    qz?: number;
}

For variable-length symbologies, min/max length can be specified in addition to the symbology.

Type declaration

  • Optional maxLen?: number

    The maximum length of the barcode, only has an effect for variable-length symbologies.

  • Optional minLen?: number

    The minimum length of the barcode, only has an effect for variable-length symbologies.

  • name: SymbologyName

    The name of the symbology.

  • Optional qz?: number

    The minimum length of the leading and trailing quiet zone for this symbology, expressed as multiples of X.

    Remarks

    There is rarely a need to change the default.

Generated using TypeDoc