Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / Result Class / ModeTransitions Property




In This Topic
    ModeTransitions Property
    In This Topic
    Gets an array of the number of state transitions the reader goes through while decoding the barcode. In other words, it gets the array of BX_ModeTransition structures representing mode transitions encountered.
    Syntax
    'Declaration
     
    Public ReadOnly Property ModeTransitions As ModeTransition()
    'Usage
     
    Dim instance As Result
    Dim value() As ModeTransition
     
    value = instance.ModeTransitions
    public ModeTransition[] ModeTransitions {get;}
    public: __property ModeTransition*[]* get_ModeTransitions();
    public:
    property array<ModeTransition^>^ ModeTransitions {
       array<ModeTransition^>^ get();
    }

    Property Value

    An array of ModeTransition values.
    Remarks

    When reading a barcode, many symbologies will go through state changes that may give extra context as to the content types inside the barcode (eg. Kanji). This member was added to give the user extra information about the inner workings of the barcode's state.

    Note: Currently only enabled with QR Codes.

    See Also