Contents - Index - Previous - Next


OnZipComplete Event 

 

Applies to

TVCLZip component

 

Declaration

property OnZipComplete: TZipComplete = procedure(Sender: TObject; FileCount: Integer); of object;

 

Description

The OnZipComplete event handler is triggered at the very end of an Zip process, after ALL files have beenzipped. Note that this event is not triggered after each file is zipped.  For that you would use the OnEndZip Event.  

 

The FileCount parameter that is passed into the event contains the total number of files that were successfully unzipped. 

 

This event will rarely be used since the same information can be obtained from the return value from the call to the Zip Method.  This event is mainly can be useful when using VCLZip in threads where in certain circumstances the return from the Zip method is not seen. 

 

See Also: 

 

OnUnZipComplete Event

OnEndZip Event