iFontID =1
LoadFont( iFontID, "Arial" ) // load system font
If iFontID // if exist
iTextIndex=1 // set Id for Text
CreateText(iTextIndex,"Process Started") // create text
SetTextSize(iTextIndex,25) // set size text
SetTextFont( iTextIndex, iFontID ) // set font For Text
else
print("erreur chargement font")
Endif
SetTextPosition(iTextIndex,10,100)
Help make AGK better by submitting an example for this command! (All examples are subject to approval)
iFontID =1 LoadFont( iFontID, "Arial" ) // load system font If iFontID // if exist iTextIndex=1 // set Id for Text CreateText(iTextIndex,"Process Started") // create text SetTextSize(iTextIndex,25) // set size text SetTextFont( iTextIndex, iFontID ) // set font For Text else print("erreur chargement font") Endif SetTextPosition(iTextIndex,10,100)