123456789101112131415161718192021222324252627282930313233343536 |
- .. _func_streams_writeline:
- =========
- WriteLine
- =========
- WriteLine -
- Description
- ===========
- .. code-block:: blitzmax
- WriteLine( stream:TStream,str$ )
- Write a line of text to a stream
- A sequence of bytes is written to the stream (one for each character in @str)
- followed by the line terminating sequence "~r~n".
- Parameters
- ==========
- Return Values
- =============
- True if line successfully written, else False
- Examples
- ========
- See Also
- ========
|