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


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

--

Legend:

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

    v1 v1  
     1= PrintLCDbutton =
     2Prints text on the LCD screen using the default font.
     3
     4{{{
     5void PrintLCD(const char* pszText);
     6}}}
     7
     8== Parameters ==
     9
     10 * pszText - character array pointer. Use one of the following defines:
     11 ** FONT_BTN_ZERO
     12 ** FONT_BTN_TARE1
     13 ** FONT_BTN_TARE2
     14 ** FONT_BTN_GROSS
     15 ** FONT_BTN_NET
     16 ** FONT_BTN_PRINT
     17 ** FONT_BTN_UNITS
     18 ** FONT_BTN_ID
     19 ** FONT_BTN_MENU
     20
     21== Return Value ==
     22
     23 * void - does not return any value
     24
     25== Remarks ==
     26
     27 * This does not create a button that responds to pressing. This function would not normally be used in an application. Instead refer to the form functions.
     28
     29== Examples ==
     30
     31{{{
     32PrintLCDbutton(FONT_BTN_ZERO);
     33}}}
     34
     35
     36== See Also ==
     37
     38 * LocateLCD
     39 * DisplayText