Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip.ReaderWriter Namespace / ZipWriter Class / ByteProgression Event


In This Topic
    ByteProgression Event (ZipWriter)
    In This Topic
    Raised when WriteItemData has been called.
    Syntax
    'Declaration
     
    Public Event ByteProgression As EventHandler(Of ZipWriterByteProgressionEventArgs)
    'Usage
     
    Dim instance As ZipWriter
    Dim handler As EventHandler(Of ZipWriterByteProgressionEventArgs)
     
    AddHandler instance.ByteProgression, handler
    Event Data

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

    PropertyDescription
    Gets the number of bytes processed of the current file.  
    Gets the local header of the item currently being processed.  
    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