ProvIlyda.getQRImage Method

Returns an object-type image, ready to be embedded on your invoice document. 
In the Trial Version, this function returns a QR leading to the url "https://www.arbitrans.gr".
Public Function getQRImage( _ 
ByVal size As Integer
) As Image
This language is not supported or no code example is available.
public Image getQRImage( 
int size 
)
This language is not supported or no code example is available.

Parameters

size
int

The size of the QR in pixels. Maximum size 500 pixels.

Return Value

Image
Example
 
 var il = new ProvIlyda("ilydaUser", "ilydaPassword", "arbUser", "arbKey", false);
 
 // The "send invoice" code is here.
 
 Image quURL = il.getQRImage(150);
 					
This language is not supported or no code example is available.
 Dim il As ProvIlyda = New ProvIlyda("ilydaUser", "ilydaPassword", "arbUser", "arbKey", False)
 
 'The "send invoice" code is here.
 
 Dim quURL As Image = il.getQRImage(150)
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition