Reads a specified number of characters from the host.
'Declaration
Overloads Function ReadChars( _
ByVal As Integer _
) As String
'Usage
Dim instance As IScreen
Dim count As Integer
Dim value As String
value = instance.ReadChars(count)
Parameters
- count
- The number of characters to read. If 0 is specified an empty string is returned
Return Value
a string containing the requested number of characters or all characters received prior to a timeout.