VCL, unit System.Classes

TNotifyEvent

TNotifyEvent

Declaration

TNotifyEvent = procedure(Sender: TObject) of object;

Description

Event type used for simple notifications.

See Also

VCL TNotifyEvent Documentation

Example

// Hide the progress bar when task finishes
procedure TMainForm.ImageEnView1FinishWork(Sender: TObject);
begin
  IOProgressBar.Visible := False;
end;