Rectangular Viewfinder#
Defined in namespace Scandit.DataCapture.Core.UI.Viewfinder
-
RectangularViewfinderStyle
# Added in version 6.8.0
The style of the RectangularViewfinder.
-
Legacy
# Added in version 6.8.0
Legacy style from versions before 6.8.
-
Square
# Added in version 6.8.0
New style from version 6.8 onwards with square corners.
-
Rounded
# Added in version 6.8.0
New style from version 6.8 onwards with rounded corners.
-
-
RectangularViewfinderLineStyle
# Added in version 6.8.0
The style of the lines drawn as part of the RectangularViewfinder for all styles except RectangularViewfinderStyle.Legacy.
-
Bold
# Added in version 6.8.0
Draws lines with a width of 5 dips/points.
-
Light
# Added in version 6.8.0
Draws lines with a width of 3 dips/points.
-
-
RectangularViewfinder
# class RectangularViewfinder
: IViewfinderAdded in version 6.2.0
Rectangular viewfinder with an embedded Scandit logo. The rectangle is always centered on the point of interest of the view.
The rectangular viewfinder is displayed when the recognition is active and hidden when it is not.
To use this viewfinder, create a new instance and assign it to the overlay, e.g. the barcode capture overlay by assigning to the BarcodeCaptureOverlay.Viewfinder property.
-
Create()
# static RectangularViewfinder
Create
(RectangularViewfinderStyle style, RectangularViewfinderLineStyle lineStyle)Added in version 6.8.0
Constructs a new rectangular viewfinder with the specified style and line style.
-
Create()
static RectangularViewfinder
Create
(RectangularViewfinderStyle style)Added in version 6.8.0
Constructs a new rectangular viewfinder with the specified style and RectangularViewfinderLineStyle.Light.
-
Create()
static RectangularViewfinder
Create
()Added in version 6.2.0
Constructs a new rectangular viewfinder with RectangularViewfinderStyle.Legacy and RectangularViewfinderLineStyle.Light.
-
Style
# RectangularViewfinderStyle
Style
{ get; }Added in version 6.8.0
The style of the viewfinder.
-
LineStyle
# RectangularViewfinderLineStyle
LineStyle
{ get; }Added in version 6.8.0
The style of the viewfinder’s lines. Not available for RectangularViewfinderStyle.Legacy.
-
Color
# UIColor
Color
{ get;set; }Added in version 6.2.0
The color used to draw the logo and viewfinder when the mode is enabled. The color is always used at full opacity, changing the alpha value has no effect.
-
DisabledColor
# UIColor
DisabledColor
{ get;set; }Added in version 6.3.0
The color used to draw the logo and viewfinder when the mode is disabled. By default transparent.
-
Dimming
# nfloat
Dimming
{ get;set; }Added in version 6.8.0
The amount the area outside the viewfinder’s rectangle is dimmed by. Accepts values between 0 (no dimming) and 1 (fully blacked out). Not available for RectangularViewfinderStyle.Legacy.
-
DisabledDimming
# nfloat
DisabledDimming
{ get;set; }Added in version 6.11.0
The amount the area outside the viewfinder’s rectangle is dimmed by when the mode is disabled. Accepts values between 0 (no dimming) and 1 (fully blacked out). Not available for RectangularViewfinderStyle.Legacy.
-
Animation
# RectangularViewfinderAnimation
Animation
{ get;set; }Added in version 6.8.0
The animation used for the viewfinder, if any. Not available for RectangularViewfinderStyle.Legacy.
-
SizeWithUnitAndAspect
# SizeWithUnitAndAspect
SizeWithUnitAndAspect
{ get; }Added in version 6.2.0
The size and sizing mode of the viewfinder.
-
SetSize()
# void
SetSize
(SizeWithUnit size)Added in version 6.2.0
Sets the horizontal and vertical size of the viewfinder to the provided value. When the unit is relative (unit in either x or y is MeasureUnit.Fraction) the size is computed relative to the view size minus the scan area margins.
-
SetWidthAndAspectRatio()
# void
SetWidthAndAspectRatio
(FloatWithUnit width,nfloat
heightToWidthAspectRatio)Added in version 6.2.0
Sets the width of the viewfinder and compute height automatically based on the provided height/width aspect ratio. When the unit is relative (MeasureUnit.Fraction), the width is computed relative to the view size minus the scan area margins.
-
SetHeightAndAspectRatio()
# void
SetHeightAndAspectRatio
(FloatWithUnit height,nfloat
widthToHeightAspectRatio)Added in version 6.2.0
Sets the height of the viewfinder and compute width automatically based on the provided width/height aspect ratio. When the unit is relative (MeasureUnit.Fraction), the height is computed relative to the view size minus the scan area margins.
-
SetShorterDimensionAndAspectRatio()
# void
SetShorterDimensionAndAspectRatio
(nfloat
fraction,nfloat
aspectRatio)Added in version 6.8.0
Sets the viewfinder size on the short side of the scan area as fraction of the scan area size. The size on the long side is calculated based on the provided short side/long side aspectRatio.
-