Changes between Version 10 and Version 11 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayText
- Timestamp:
- 03/12/25 08:10:03 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayText
v10 v11 2 2 Displays text on the LCD screen at the specified position using a specified length, font, and display logic. 3 3 4 {{{ 4 {{{#!c++ 5 5 void DisplayText(int x, int y, const string& strText, int len = 0, font825 font = STD_FONT, int dsplogic = DSP_LOGIC_OVERWRITE); 6 6 … … 27 27 == Examples == 28 28 29 {{{ 29 {{{#!c++ 30 30 DisplayText(10, 10, "Hello World"); 31 31 }}} 32 32 This example is equivalent to ''LocateLCD(10, 10);'' followed by ''PrintLCD("Hello World");'' 33 33 34 {{{ 34 {{{#!c++ 35 35 string strText = "1234567890"; 36 36 DisplayText(0, 10, strText, 5);