Part Number Barcode Builder
Defined under the namespace Scandit.Datacapture.Label
- PartNumberBarcodeBuilder
class PartNumberBarcodeBuilder : BarcodeFieldBuilder<PartNumberBarcodeBuilder, PartNumberBarcode>
Added in version 7.2.0
Builder class for creating PartNumberBarcode 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<PartNumberBarcode>
Added in version 7.2.0
Builds a PartNumberBarcode field definition with the specified name.
- partNumberBarcode(name)
function partNumberBarcode(name: string): PartNumberBarcodeBuilder
Added in version 8.4.0
Creates a new PartNumberBarcodeBuilder with the given field name pre-set. Shorthand for
new PartNumberBarcodeBuilder(name).