GatheringZipContentByteProgression Event
See Also 
Xceed.Zip Assembly > Xceed.Zip Namespace > ZipEvents Class : GatheringZipContentByteProgression Event


Raised during the step preceding the actual creation of the target zip file, where files to keep from the original zip file (the ones that were not modified) are gathered to a temporary location before overwriting the zip file.

Syntax

Visual Basic (Declaration) 
Public Event GatheringZipContentByteProgression As GatheringZipContentByteProgressionEventHandler
Visual Basic (Usage)Copy Code
Dim instance As ZipEvents
Dim handler As GatheringZipContentByteProgressionEventHandler
 
AddHandler instance.GatheringZipContentByteProgression, handler
C# 
public event GatheringZipContentByteProgressionEventHandler GatheringZipContentByteProgression

Event Data

The event handler receives an argument of type ByteProgressionEventArgs containing data related to this event. The following ByteProgressionEventArgs properties provide information specific to this event.

PropertyDescription
AllFilesBytes Gets the total combined size, in bytes, of all files being processed.
CurrentFileBytes Gets the size, in bytes, of the file currently being processed.
CurrentItem (Inherited from Xceed.FileSystem.FileSystemEventArgs) 
TargetItem (Inherited from Xceed.FileSystem.FileSystemEventArgs) 
UserData (Inherited from Xceed.FileSystem.FileSystemEventArgs) 

Requirements

Target Platforms: Windows 2000, Windows XP SP3 Family, Windows Server 2003-2008 Family, Windows Vista, Windows 7

See Also