type
TScOnProgressEvent = procedure(Sender: TObject; Total, Current: Int64; var Cancel: boolean) of object;
property OnProgress: TScOnProgressEvent;
Description
Occurs when uploading and downloading files each time when the next piece of data is sent to the server or received from it.
Set Cancel to True if you want to abort the current operation. In this case, the client will stop data transfer and generate a corresponding exception.
See Also