VIDEO - PRINT IN WLANGUAGE
Printing in WLanguage - http://doc.windev.com
_texto_1 is string = "Impressao dessa linha"
_texto_2 is string = "Outra linha"
iPreview(IMPRESSORA_OPCAO)
// Criar uma fonte Helvetica
iCreateFont(1,12,iNormal,iSwiss)
iCreateFont(2,10,iNormal,iRoman)
// Imprimir o texto
iPrint(iFont(1) + _texto_1 + "Imprime com fonte 1")
iPrint(iFont(2) +_texto_2 + "Imprime com fonte 2")
iEndPrinting()