Type

PROPERTY Type AS String

Before you can use any of the methods provided by this class, you have to select here the compression driver to use. Currently, you can select "zlib" and "bzlib2" as compression drivers.

For more information about "zlib" algorithm, you can visit http://www.zlib.org/

For more information about "bzlib2" algorithm, you can visit http://sources.redhat.com/bzip2/

Example:

...
Dim Cp As Uncompress

Cp = New Uncompress
Cp.Type = "bzlib2"
...