Discuss this help topic in SecureBlackbox Forum

TElASMessage.OnProgress

TElASMessage     


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


This event is fired consequently during message processing.

Declaration

[C#/Java]
    event TSBProgressEvent OnProgress;
    delegate void TSBProgressEvent(object Sender, long Total, long Current, ref bool Cancel)

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

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

[C++]
    not available

[PHP]
    not available

Parameters

  • Total - data total size
  • Current - specifies how much data has been processed already
  • Cancel - allows to cancel the operation

Description

    This event is fired by TElASMessage consequently in order to show the progress of the current message processing step.

Discuss this help topic in SecureBlackbox Forum