String

FUNCTION String ( Source AS String ) AS String

This function returns an uncompressed string from a compressed string using the algorithm defined by Type property.

* Source : string to be uncompressed. Must be a valid compressed string.

...
Dim Cz As New Uncompress
Dim Buf As String 

Cz.Type = "bzlib2"

Buf = Cz.String ( SourceString )
PRINT Buf

...