| 1 | = DisplayStr = |
| 2 | Prints text on the LCD screen at the specified position using a specified font, and display logic. |
| 3 | |
| 4 | {{{ |
| 5 | void 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 | {{{ |
| 25 | DisplayStr(4, 10, 10, DSP_LOGIC_XOR, "Hello World"); |
| 26 | }}} |
| 27 | |
| 28 | == See Also == |
| 29 | |
| 30 | * LocateLCD |
| 31 | * PrintLCD |