EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElZipReader.OnProgress

TElZipReader     See also    


 

This event reports extraction progress.

 
 

Declaration

[C#]
    event TSBZipProgressEvent OnProgress;
    delegate void TSBZipProgressEvent(object Sender, long Processed, long Total, long OverallProcessed, long OverallTotal, ref bool Cancel);

[VB.NET]
    Event OnProgress As TSBZipProgressEvent
    Public Delegate Sub TSBZipProgressEvent(ByVal Sender As Object, ByVal Processed As Long, ByVal Total As Long, ByVal OverallProcessed As Long, ByVal OverallTotal As Long, ByRef Cancel As Boolean)

[Pascal]
    property OnProgress : TSBZipProgressEvent;
    TSBZipProgressEvent = procedure(Sender: TObject; Processed, Total, OverallProcessed, OverallTotal : UInt64, var Cancel : boolean) of object;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • Processed - number of processed bytes of the current entry
  • Total - total size of the current archive entry.
  • OverallProcessed - number of bytes processed of the whole archive.
  • OverallTotal - total size of the archive in bytes.
  • Cancel - this parameter allows to cancel data extraction.
 
 

Description

    This event is fired by TElZipReader continuously to show extraction progress. Parameter Cancel could be set to True in order to stop operation.

 
 

See also:     OnExtractionFinished OnExtractionStart

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation