|
|
|
| acFormHook component.
|
| property OnCaptionChanged: TNotifyEvent;
|
| The OnCaptionChanged event occurs when the text on the tile bar of form is changed.
|
| procedure TForm1.acFormHook1CaptionChanged(Sender: TObject);
|
| begin
|
| Label1.Caption := Caption; // Form1.Caption
|
| end;
|