Writeable
From REALbasicWiki
The Writeable interface is for use by streams to which code can write. It is implemented by BinaryStream, IPCSocket, Serial, StdErr, StdOut, TCPSocket, and TextOutputStream.
Contents |
[edit] Methods
[edit] Sub Flush( )
Flushes the contents of the internal buffers to their destination. It also clears the buffers.
[edit] Sub Write( text As String )
Writes the passed text to the destination.
[edit] Function WriteError( ) As Boolean
Returns True if there were any errors in the preceding write operation.
