= DisplayStr = Prints text on the LCD screen at the specified position using a specified font, and display logic. {{{ void DisplayStr(int nFont, int x, int y, int dsplogic, const char* pszText); }}} == Parameters == * nFont - font number. * x - X coordinate (0 - 639) * y - Y coordinate (0 - 479) * dsplogic - DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET * pszText - character array pointer such as string literal "Hello World" == Return Value == * void - does not return any value == Remarks == == Examples == {{{ DisplayStr(4, 10, 10, DSP_LOGIC_XOR, "Hello World"); }}} == See Also == * LocateLCD * PrintLCD