func_streams_loadstring.rst 495 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .. _func_streams_loadstring:
  2. ==========
  3. LoadString
  4. ==========
  5. LoadString -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. LoadString$( url:Object )
  10. Load a String from a stream
  11. The specified @url is opened for reading, and each byte in the resultant stream
  12. (until eof of file is reached) is read into a string.
  13. A #TStreamReadException is thrown if the stream could not be read.
  14. Parameters
  15. ==========
  16. Return Values
  17. =============
  18. A String
  19. Examples
  20. ========
  21. See Also
  22. ========