BarcodeDecoder.SetRotationHelper Method
Assign a rotation helper class to this property if you want to automatically try to rotate the barcode to find it.

SetRotationHelper(
rotationHelper
as Object)
Parameters
- rotationHelper
- assign instance of RotateEffectRaw to this parameter.
Remarks

This barcode needed automatic rotation in memory to be detected correctly
This object must be of the type RotateEffectRaw. The class signature here is Object to not create dependence but do not assign anything to it except RotateEffectRaw.
RotateEffectRaw is defined in the PictureEffectsRaw plugin.
Example:
decoder = new BarcodeDecoder()
decoder.SetRotationHelper(new RotateEffectRaw())
Technically you could assign your own custom class to it as long as it implements the signature for a function that is like Apply(source as RawBitmap,angle as Double,backColor as Color,method as Integer) as RawBitmap
See Also
BarcodeDecoder Class