Changes between Version 10 and Version 11 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayText


Ignore:
Timestamp:
03/12/25 08:10:03 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayText

    v10 v11  
    22Displays text on the LCD screen at the specified position using a specified length, font, and display logic.
    33
    4 {{{
     4{{{#!c++
    55void DisplayText(int x, int y, const string& strText, int len = 0, font825 font = STD_FONT, int dsplogic = DSP_LOGIC_OVERWRITE);
    66
     
    2727== Examples ==
    2828
    29 {{{
     29{{{#!c++
    3030DisplayText(10, 10, "Hello World");
    3131}}}
    3232This example is equivalent to ''LocateLCD(10, 10);'' followed by ''PrintLCD("Hello World");''
    3333
    34 {{{
     34{{{#!c++
    3535string strText = "1234567890";
    3636DisplayText(0, 10, strText, 5);