Discuss this help topic in SecureBlackbox Forum

TElGzipReader.OnProgress

TElGzipReader     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This event reports extraction progress.

Declaration

[C#]
    not available

[VB.NET]
    not available

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

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Processed - number of processed bytes of the current entry.
  • Total - total size of the data being processed.
  • Cancel - this parameter allows to cancel data extraction.

Description

This event is fired by TElGZipReader periodically to show extraction progress. To abort extraction, set Cancel parameter to true.

See also:     CompressedSize    

Discuss this help topic in SecureBlackbox Forum