1234567891011121314151617181920212223242526272829303132333435363738 |
- .. _func_streams_savestring:
- ==========
- SaveString
- ==========
- SaveString -
- Description
- ===========
- .. code-block:: blitzmax
- SaveString( str$,url:Object )
- Save a String to a stream
- The specified @url is opened For writing, and each character of @str is written to the
- resultant stream.
- A #TStreamWriteException is thrown if not all bytes could be written.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
|