| 1 | = PrintLCDbutton = |
| 2 | Prints text on the LCD screen using the default font. |
| 3 | |
| 4 | {{{ |
| 5 | void 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 | {{{ |
| 32 | PrintLCDbutton(FONT_BTN_ZERO); |
| 33 | }}} |
| 34 | |
| 35 | |
| 36 | == See Also == |
| 37 | |
| 38 | * LocateLCD |
| 39 | * DisplayText |