property Argument [aInx : Integer] : Integer
Returns the arguments for the current command.
When a terminal control sequence has been completely received, the ProcessChar method will return pctComplete. Just prior to returning this success value, the parser will identify the command described by the sequence, and extract out the arguments (or parameters) from the sequence. The ArgumentCount property gives the number of arguments the parser finds. You can retrieve the individual arguments by using the Argument property at this time.
If you try to retrieve any arguments before a terminal control sequence has been completely received, no error or exception is generated. The return value will always be zero in this case.
In this ancestor class, the Argument property always returns zero.
See also: ArgumentCount, ProcessChar