Use this function to set the font propertys for graphical text output of the current line. You can use any font installed. The syntax is a follows:
%LCD.Gfx_SetFont(fontname,fontsize,fontcolor,StyleList)
Thereby the parameter StyleList is optional and sets the font style. StyleList is a enumeration of font styles seperated by a comma. The following values are possible:
Bold -> bold output
Italic -> italic output
Underline -> underlined output
StrikeOut -> striked out utput
Example:
%LCD.Gfx_SetFont('Arial',15,1,Bold,Italic)
This function sets the font for graphical text output. The font used after this function call is "Arial" with size of 15px ,color black and is display in bold and italic style.