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




In This Topic
    RowsAndColumns Property (WriterQRCode)
    In This Topic
    Gets and sets the number of rows and columns desired in creating a QR Code barcode.
    Syntax
    'Declaration
     
    Public Property RowsAndColumns As QRCodeSizes
    'Usage
     
    Dim instance As WriterQRCode
    Dim value As QRCodeSizes
     
    instance.RowsAndColumns = value
     
    value = instance.RowsAndColumns
    public QRCodeSizes RowsAndColumns {get; set;}
    public: __property QRCodeSizes get_RowsAndColumns();
    public: __property void set_RowsAndColumns( 
       QRCodeSizes value
    );
    public:
    property QRCodeSizes RowsAndColumns {
       QRCodeSizes get();
       void set (    QRCodeSizes value);
    }

    Property Value

    The QRCodeSizes value set.
    Remarks

    The range is obtained from the QRCodeSizes enumeration where AutoRowsAndColumns is the default.

    See Also