[Overview][Constants][Types][Classes][Index] |
Specifies an event handler signalled to indicate compression/decompression progress
Source position: zipper.pp line 201
type TProgressEventEx = procedure( |
Sender: TObject; |
const ATotPos: Int64; |
const ATotSize: Int64 |
) of object; |
Sender |
|
Object for the event notification |
ATotPos |
|
Cumulative number of bytes handled in the caller |
ATotSize |
|
Total number of bytes to be processed in the caller |
TProgressEventEx is an object procedure which implements an event handler signalled to indicate compression/decompression progress. It is very similar to TProgressEvent, but provides separate values for the cumulative number of bytes handled and the total number of bytes to be processed.
TProgressEventEx is the type used to implement the OnProgressEx property in TDeCompressor and TUnZipper.
|
Event handler signalled to indicate progress using processed and total byte counts |
|
|
Removes compression applied using the deflate algorithm |
|
|
Extended progress event handler used when decompressing files |
|
|
Unzips all files in a zip file, writing them to disk |
|
|
Event procedure for capturing compression/decompression progress |