Categorie: Anveo Mobile App

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

Gebruik deze opdracht om een afbeelding af te drukken op de huidige coördinaten. Geef de maximale breedte en hoogte op voor je afbeelding in de huidige eenheden (standaard is millimeter). PDFImage(string ImageContent, int MaxWidth,...

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’);

Checklists toevoegen aan Dynamics in Anveo Legacy-versie

Om de toe te voegen aan je heb je de controlelijstobjecten nodig en een XML-bestand om de controlelijstgegevens te ontvangen. Neem contact op met ons ondersteuningsteam om de objecten te ontvangen. Als je de...

PDFBarcode

Print a barcode on the PDF at the current position. PDFBarcode(string BarcodeText, string BarcodeType);Example://Capital letters and numbers onlyPDFBarcode(‘TEST1′,’PdfCode128ABarcode’);//Small and capital lettersPDFBarcode(‘Test 1′,’PdfCode128BBarcode’);//EAN13PDFBarcode(‘001234567890 ‘,’PdfEan13Barcode’); Supported Barcode types are:

PDFImage

Prints an image to current coordinates. Set maxium width and height of your image in current unit (default is milimeters). PDFImage(string ImageContent, int MaxWidth, int MaxHeight);Example:local CI = Record(‘Company Information’);CI:FINDFIRST();PDFImage(CI:GETVALUE(‘Picture’),40,20);