TABSProgressEvent is the type of event handlers that provide feedback during lengthy operations.
Unit
ABSMain
type TABSProgressEvent = procedure(Sender: TObject; PercentDone: Integer; var Continue: Boolean) of object;
Description
Sender is the object that receives the event notification. This is typically the component that initiated the lengthy operation.
PercentDone is an approximation of how much of the operation has completed. Use PercentDone to update the position of a progress bar or other indicator.
Set Continue to True if the process should be continued and to False, if you want to interrupt the process.
|
|