ZLibCompression.CompressionLevel
ZLibCompression
Defines level of compression used by ZLib.
[C++]
void setCompressionLevel(long Value);
long getCompressionLevel();
[Pascal]
property CompressionLevel : integer;
[VB6]
Property CompressionLevel As Long
[ActiveX]
HRESULT _stdcall CompressionLevel([in] long Value );
HRESULT _stdcall CompressionLevel([out, retval] long * Value );
[C#]
public int CompressionLevel;
[VB.NET]
Public Property CompressionLevel As Integer
[Java]
public void setCompressionLevel(long value);
public long getCompressionLevel();
[Java ME]
public void setCompressionLevel(int compressionLevel);
public MCZLibCompression(int compressionLevel);
[Palm]
not applicable;
[DLL]
void __stdcall MCZLibCompressionSetCompressionLevel(HMCZLibCompression h, long value);
long __stdcall MCZLibCompressionGetCompressionLevel(HMCZLibCompression h);
- h - handle to the object that was returned by Create method
This property specifies the level of compression used by ZLib. Possible values are from 0 (store) to 9 (max.compression).
|