Class FindAndPickArOverlayPolygonConfiguration

Configuration of the overlay polygon displayed on top of a barcode in the camera preview.

Hierarchy

  • PartiallyConstructible
    • FindAndPickArOverlayPolygonConfiguration

Constructors

Properties

completed: PolygonStyle

Appearance of the overlay polygon when a barcode is completed.

Default Value

new PolygonStyle({
"strokeColor": "?sbColorPositive",
"fillColor": "#00000000",
"strokeWidth": 3.0,
"cornerRadius": 5.0
});
partiallyScanned: PolygonStyle

Appearance of the overlay polygon when a barcode is partially scanned.

Default Value

new PolygonStyle({
"strokeColor": "?sbColorWarning",
"fillColor": "#00000000",
"strokeWidth": 3.0,
"cornerRadius": 5.0
});
rejected: PolygonStyle

Appearance of the overlay polygon when a barcode is rejected.

Default Value

new PolygonStyle({
"strokeColor": "?sbColorSurface",
"fillColor": "#00000000",
"strokeWidth": 3.0,
"cornerRadius": 5.0
});
visible: boolean

Control the visibility of the overlay polygon.

Default Value

true;

Generated using TypeDoc