VintaSoft Barcode .NET SDK 15.3: Documentation for .NET developer
Vintasoft.Barcode.BarcodeInfo Namespace / QRPrivateDataValueItem Class / QRPrivateDataValueItem Constructor(Int32,Boolean[])
Syntax Exceptions Requirements SeeAlso
In This Topic
    QRPrivateDataValueItem Constructor(Int32,Boolean[])
    In This Topic
    Initializes a new instance of the QRPrivateDataValueItem class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal encodingMode
    The encoding mode.
    As Integer, _
    ByVal dataBits
    The bits of a private data.
    () As Boolean _
    )
    public QRPrivateDataValueItem(
    int encodingMode,
    bool[] dataBits
    )
    public: QRPrivateDataValueItem(
    int encodingMode,
    bool[]* dataBits
    )
    public:
    QRPrivateDataValueItem(
    int encodingMode,
    array<bool>^ dataBits
    )

    Parameters

    encodingMode
    The encoding mode.
    dataBits
    The bits of a private data.
    Exceptions
    ExceptionDescription
    Thrown if encodingMode is not 6 and less than 10 or greater than 15.
    Requirements

    Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also