Readable
Interface Readable
| Method Prototype | Description
|
| Property EOF As Boolean (read only) | True of stream is at End of File, otherwise False.
|
| Property ReadError As Boolean (read only) | True if an error has occurred while reading the file, otherwise False.
|
| Method Read(count As Integer) As String | Reads count bytes from the input stream and returns them as a String.
|
This interface is implemented by objects that support serial reading of data.
Framework classes that implement Readable include
TextInputStream and
BinaryStream.