Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayText
- Timestamp:
- 08/19/10 15:00:31 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayText
v2 v3 1 = = DisplayText ==1 = DisplayText = 2 2 Prints text on the LCD screen at the specified position using a specified length, font, and display logic. 3 3 … … 8 8 }}} 9 9 10 == = Parameters ===10 == Parameters == 11 11 12 12 * x - X coordinate (0 - 639) … … 18 18 * dsplogic - DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET 19 19 20 == = Return Value ===20 == Return Value == 21 21 22 22 * void - does not return any value 23 23 24 == = Remarks ===24 == Remarks == 25 25 * The function can be used as a shortcut to combine some string formatting operations, locating, and printing into a single function. 26 26 27 == = Examples ===27 == Examples == 28 28 29 29 {{{ … … 40 40 The first display will truncate the string to output "12345". The second display will pad the string to output "123 " and use the large font. 41 41 42 == = See Also ===42 == See Also == 43 43 44 44 * LocateLCD