Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip Namespace / ZipEvents Class / BuildingZipByteProgression Event


In This Topic
    BuildingZipByteProgression Event
    In This Topic
    Raised every time a target zip file is being built, providing byte progression information to the event handler.
    Syntax
    'Declaration
     
    Public Event BuildingZipByteProgression As BuildingZipByteProgressionEventHandler
    'Usage
     
    Dim instance As ZipEvents
    Dim handler As BuildingZipByteProgressionEventHandler
     
    AddHandler instance.BuildingZipByteProgression, handler
    public event BuildingZipByteProgressionEventHandler BuildingZipByteProgression
    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
    Gets the total combined size, in bytes, of all files being processed.  
    Gets the size, in bytes, of the file currently being processed.  
    Gets or sets the current FileSystemItem object being processed. (Inherited from Xceed.FileSystem.FileSystemEventArgs)
    Gets or sets the destination FileSystemItem object. (Inherited from Xceed.FileSystem.FileSystemEventArgs)
    Gets or sets the opaque data that will be sent back to the event handler whenever an event is raised. (Inherited from Xceed.FileSystem.FileSystemEventArgs)
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also