PDFPageWidth
Use this function to get the width of the current PFD Page defined in the comman PDFPage. decimal width = PDFPageWidth(pdfPage);
Use this function to get the width of the current PFD Page defined in the comman PDFPage. decimal width = PDFPageWidth(pdfPage);
Utilizzare questa funzione per disegnare un’ellisse su un documento PDF nelle dimensioni e nel colore specificati. function PDFDrawEllipse(color, color = color or PAGE(‘PDF_NEW’, ‘PdfRgbColor’, 255, 0, 0) thickness, thickness = thickness or 1; int...
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);
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:
Utilizzare questo comando per stampare un’immagine alle coordinate correnti. Specificare la larghezza e l’altezza massima dell’immagine nelle unità di misura correnti (l’impostazione predefinita è millimetri). PDFImage(string ImageContent, int MaxWidth, int MaxHeight)Example:Prints the picture from...
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’);
Il modulo di base fa parte dell’App Anveo Mobile a partire dalla release 12.0.3.0. Nella versione le app sono suddivise per . Pertanto, le liste di controllo devono essere aggiunte individualmente a ciascuna ....
Per aggiungere il modulo ad sono necessari gli oggetti checklist e un file XML per ricevere i dati della checklist. Per ricevere gli oggetti si prega di contattare il nostro team di assistenza. Quando...
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:
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);