THPDFPage.TextOut Metodo

Se si sta convalidando l'output font effettivo, chiamare prima SetFont per il face target e usare THotPDF.FontEmbedding = true con THotPDF.StandardFontEmulation = false

 

Example di codice

HPDF.FontEmbedding := true;
HPDF.StandardFontEmulation := false;
HPDF.CurrentPage.SetFont( 'Calibri', [], 12 );
HPDF.CurrentPage.TextOut( 150, 200, 0, 'Using the TextOut method' );

 

Vedi anche: SetFont, UnicodeTextOut.