Table of Contents

Class SelectionOverlayConfiguration

Namespace
ScanbotSDK.MAUI.RTU.v1
Assembly
ScanbotSDK.Shared.dll
public class SelectionOverlayConfiguration
Inheritance
SelectionOverlayConfiguration
Inherited Members

Constructors

SelectionOverlayConfiguration(bool?, BarcodeTextFormat?, Color, Color, Color, Color, Color, Color, Color, Color)

public SelectionOverlayConfiguration(bool? automaticSelectionEnabled = null, BarcodeTextFormat? overlayFormat = null, Color textColor = null, Color textContainerColor = null, Color strokeColor = null, Color highlightedStrokeColor = null, Color highlightedTextColor = null, Color highlightedTextContainerColor = null, Color polygonBackgroundColor = null, Color polygonBackgroundHighlightedColor = null)

Parameters

automaticSelectionEnabled bool?
overlayFormat BarcodeTextFormat?
textColor Color
textContainerColor Color
strokeColor Color
highlightedStrokeColor Color
highlightedTextColor Color
highlightedTextContainerColor Color
polygonBackgroundColor Color
polygonBackgroundHighlightedColor Color

Properties

AutomaticSelectionEnabled

Whether the barcode is selected automatically when being detected or not. By default - false.

public bool? AutomaticSelectionEnabled { get; set; }

Property Value

bool?

Enabled

Whether the barcode selection overlay is enabled or not.

public bool Enabled { get; set; }

Property Value

bool

HighlightedStrokeColor

The stroke color of the polygon in the selection overlay, when highlighted.

public Color HighlightedStrokeColor { get; set; }

Property Value

Color

HighlightedTextColor

The color of the text in the selection overlay, when highlighted.

public Color HighlightedTextColor { get; set; }

Property Value

Color

HighlightedTextContainerColor

The color of the texts background in the selection overlay, when highlighted.

public Color HighlightedTextContainerColor { get; set; }

Property Value

Color

OverlayTextFormat

Define the way of how to show barcode data with selection overlay. By default - [BarcodeOverlayTextFormat.CODE].

public BarcodeTextFormat? OverlayTextFormat { get; set; }

Property Value

BarcodeTextFormat?

PolygonBackgroundColor

The color inside the polygon of the selection overlay.

public Color PolygonBackgroundColor { get; set; }

Property Value

Color

PolygonBackgroundHighlightedColor

The color inside the polygon of the selection overlay, when highlighted.

public Color PolygonBackgroundHighlightedColor { get; set; }

Property Value

Color

StrokeColor

The stroke color of the polygon in the selection overlay.

public Color StrokeColor { get; set; }

Property Value

Color

TextColor

The color of the text in the selection overlay.

public Color TextColor { get; set; }

Property Value

Color

TextContainerColor

The color of the texts background in the selection overlay.

public Color TextContainerColor { get; set; }

Property Value

Color