Version Property (QrCode)
In This Topic
Gets or sets the different module configuration of the control. The versions of QRCode range from version 1 to version 40. Each version has a different module configuration or number of modules. (The module refers to the black and white dots that make up QRCode.)
Syntax
'Declaration
<JsonAttribute(1)>
Public Overridable Property Version As System.Integer
'Usage
Dim instance As QrCode
Dim value As System.Integer
instance.Version = value
value = instance.Version
[Json(1)]
public virtual System.int Version {get; set;}
public read-write property Version: System.Integer; virtual;
JsonAttribute(1)
public function get,set Version : System.int
[Json(1)]
public: __property virtual System.int get_Version();
public: __property virtual void set_Version(
System.int value
);
[Json(1)]
public:
virtual property System.int Version {
System.int get();
void set ( System.int value);
}
See Also