NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
ex_dispftout.nxc

This is an example of how to use the FontTextOut, SysDrawFont, Wait, and ClearScreen functions.

#download "PropTiny.ric"
task main()
{
DrawFontType dfArgs;
dfArgs.Location.X = 10;
dfArgs.Location.Y = 59;
dfArgs.Filename = "PropTiny.ric" ;
dfArgs.Text = "Hello" ;
SysDrawFont(dfArgs);
FontTextOut( 35,59, "PropTiny.RIC", "World", DRAW_OPT_INVERT|DRAW_OPT_FONT_DIR_T2BL );
FontTextOut( 10,20, "PropTiny.RIC", "Now is the winter of our discontent made glorious summer by this son of York. And all the clouds that lowered upon our house in the deep bosom of the ocean buried.", DRAW_OPT_NORMAL|DRAW_OPT_FONT_DIR_L2RB|DRAW_OPT_FONT_WRAP );
FontTextOut( 50,56,"PropTiny.RIC", "WiWiWiWiWiWi", DRAW_OPT_NORMAL|DRAW_OPT_FONT_DIR_L2RB );
FontTextOut( 50,48,"PropTiny.RIC", "WiWiWiWiWiWi", DRAW_OPT_INVERT|DRAW_OPT_FONT_DIR_L2RB );
FontTextOut( 50,40,"PropTiny.RIC", "WiWiWiWiWiWi", DRAW_OPT_LOGICAL_OR|DRAW_OPT_FONT_DIR_L2RB );
FontTextOut( 50,32,"PropTiny.RIC", "WiWiWiWiWiWi", DRAW_OPT_INVERT|DRAW_OPT_LOGICAL_AND|DRAW_OPT_FONT_DIR_L2RB );
}