EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElPGPReader.OnProgress

TElPGPReader     See also    


 

This event is fired periodically and shows amount of processed data.

 
 

Declaration

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

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

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

[VB6]
    Event IElPGPReaderXEvents.OnProgress( ByVal Processed As Integer, ByVal Total As Integer, ByRef Cancel As Boolean )

[ActiveX]
    void IElPGPReaderXEvents.OnProgress( [in] long Processed, [in] long Total, [in, out] VARIANT_BOOL * Cancel );

[DLL]
    not implemented;
 
 

Parameters

  • Processed - amount of processed data in bytes.
  • Total - total length of incoming data in bytes.
  • Cancel - if this parameter is set to True, further processing will be canceled.
 
 

Description

    This event shows amount of processed data in bytes. To get the amount of processed data in percent just count ((Processed * 100) / Total).

 
 

See also:     OnArmored     OnCompressed     OnCreateOutputStream     OnEncrypted     OnKeyPassphrase     OnPassphrase     OnSigned    

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