Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayStr


Ignore:
Timestamp:
08/19/10 15:45:35 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v1  
     1= DisplayStr =
     2Prints text on the LCD screen at the specified position using a specified font, and display logic.
     3
     4{{{
     5void DisplayStr(int nFont, int x, int y, int dsplogic, const char* pszText);
     6}}}
     7
     8== Parameters ==
     9
     10 * nFont - font number.
     11 * x - X coordinate (0 - 639)
     12 * y - Y coordinate (0 - 479)
     13 * dsplogic - DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET
     14 * pszText - character array pointer such as string literal "Hello World"
     15
     16== Return Value ==
     17
     18 * void - does not return any value
     19
     20== Remarks ==
     21
     22== Examples ==
     23
     24{{{
     25DisplayStr(4, 10, 10, DSP_LOGIC_XOR, "Hello World");
     26}}}
     27
     28== See Also ==
     29
     30 * LocateLCD
     31 * PrintLCD