Serial Number Barcode Builder
Defined under the namespace Scandit.Datacapture.Label
- SerialNumberBarcodeBuilder
class SerialNumberBarcodeBuilder : BarcodeFieldBuilder<SerialNumberBarcodeBuilder, SerialNumberBarcode>
Added in version 7.2.0
Builder class for creating SerialNumberBarcode field definitions. Provides a fluent interface for configuring barcode field properties including symbologies, validation regexes, location constraints, and other field-specific settings.
- constructor(name)
constructor(name?: string)
Added in version 8.3.0
Constructs a builder with the field name pre-set. When provided, build can be called without arguments.
- build(name)
build(name?: string): Promise<SerialNumberBarcode>
Added in version 7.2.0
Builds a SerialNumberBarcode field definition with the specified name.
- serialNumberBarcode(name)
function serialNumberBarcode(name: string): SerialNumberBarcodeBuilder
Added in version 8.4.0
Creates a new SerialNumberBarcodeBuilder with the given field name pre-set. Shorthand for
new SerialNumberBarcodeBuilder(name).