TApxTerminalParser.ProcessWideChar

TApxTerminalParser

function ProcessChar(aCh : WideChar) : TApxParserCmdType; virtual;
TApxParserCmdType = (pctNone, pctChar, pctPending, pctComplete);

Processes a single character.

ProcessWideChar is the wide character (or UNICODE) version of ProcessChar. It works in the same fashion with the exception of accepting UNICODE characters only. Please see the ProcessChar method reference for details.

In this ancestor class, the ProcessWideChar method always returns pctNone.

If ProcessWideChar is called for a parser that was created to expect single-byte ASCII characters, a parser exception will be raised.

See also: Create, ProcessChar