Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayStr


Ignore:
Timestamp:
08/20/10 08:01:00 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v4 v5  
    11= DisplayStr =
    2 Prints text on the LCD screen at the specified position using a specified font, and display logic.
     2Displays text on the LCD display at the specified position using a specified font, and display logic.
    33
    44{{{
     5void DisplayStr(int nFont, int x, int y, int dsplogic, const string& strText);
     6
    57void DisplayStr(int nFont, int x, int y, int dsplogic, const char* pszText);
    6 
    7 void DisplayStr(int nFont, int x, int y, int dsplogic, const std::string& strText);
    88}}}
    99
     
    1313 * x - X coordinate (0 - 639)
    1414 * y - Y coordinate (0 - 479)
    15  * dsplogic - DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET
     15 * dsplogic - display logic, DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET
     16 * strText - text to display
    1617 * pszText - character array pointer such as string literal "Hello World" to display
    17  * strText - string reference to string to display
    1818
    1919== Return Value ==
    2020
    21  * void - does not return any value
     21This function does not return any value.
    2222
    2323== Remarks ==
     24
     25InitLCD must be called at the beginning of any application that will use the display.
    2426
    2527== Examples ==