12345678910111213141516171819202122232425262728293031323334353637 |
- .. _func_streams_writestring:
- ===========
- WriteString
- ===========
- WriteString -
- Description
- ===========
- .. code-block:: blitzmax
- WriteString( stream:TStream,str$ )
- Write a String to a stream
- Each character in @str is written to @stream.
- A #TStreamWriteException is thrown if not all bytes could be written.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
|