Category: Anvaigo Mobile App

Anvaigo Mobile App – Rebranding

In March 2025, we changed our brand from “Anveo” to “Anvaigo”. This has a few implications for the development and setup of the Anvaigo Mobile App, because for technical reasons we cannot rename or...

PDFSetPage

Sets the local PDFVariables PDFPage and PDFPageGraphics for working with the PDF locally. The local variables PDFDocument, PDFPage and PDFPageGraphics need to exist. int pageIndex;PDFSetPage(pageIndex);//pageIndex is 0 based, that means it begins with 0

PDFPageHeight

Use this function to get the height of the current PFD Page defined locally under PDFPage. decimal height = PDFPageHeight(pdfPage);

PDFPageCount

Use this function to get the number of pages of the PDF document. To use int count = PDFPageCount();

PDFPageWidth

Use this function to get the width of the current PFD Page defined in the comman PDFPage. decimal width = PDFPageWidth(pdfPage);

PDFDrawEllipse

Use this function to draw an ellipse on a PDF document in the dimensions and colour specified. function PDFDrawEllipse(color, color = color or PAGE(‘PDF_NEW’, ‘PdfRgbColor’, 255, 0, 0) thickness, thickness = thickness or 1;...

PDFSignatureField

Use this command to create a signature field on the PDF using PDF functionality of defined width and height. PDFSignatureField(string text, int width, int height);Example:PDFSignatureField(‘Please sign here.’, 40, 20);

PDFBarcode

Use this command to print a barcode on current position. PDFBarcode(string BarcodeText string BarcodeType);Example:Capital letters and numbers only:PDFBarcode(‘TEST1′,’PdfCode128ABarcode’);Small and capital letters:PDFBarcode(‘Test 1′,’PdfCode128BBarcode’);EAN13PDFBarcode(‘001234567890 ‘,’PdfEan13Barcode’); Supported barcode types:

PDFImage

Use this command to print an image at the current coordinates. Specify the maximum width and height for your image in the current units (default is millimeters). PDFImage(string ImageContent, int MaxWidth, int MaxHeight)Example:Prints the...

PDFCreate()

Use this command to create the PDF document. string PDFCreate();Example:Create PDF document and show in PDF viewerlocal PDFData = PDFCreate();PAGE(‘UNLOCKPAGE’);PAGE(‘OPENFILE’, PDFData, ‘TestPDF.pdf’, ‘file’);