Progress Event
Fired as progress is made.
Syntax
type TProgressEvent = procedure Progress(Sender: TObject; BytesProcessed: Int64; PercentProcessed: Integer) of object;property OnProgress: TProgressEvent read FOnProgress write FOnProgress;
Remarks
This event is fired automatically as data is processed by the component.
The PercentProcessed parameter indicates the current status of the operation.
The BytesProcessed parameter holds the total number of bytes processed so far.