Wenn das Control Property nicht gesetzt ist, verwendet die Action das aktuell fokussierte TRichEdit:
Delphi-Quellcode:
function TRichEditAction.HandlesTarget(Target: TObject): Boolean;
begin
Result := ((Control <> nil) and (Target = Control) or
(Control = nil) and (Target is TCustomRichEdit)) and TCustomRichEdit(Target).Focused;
end;