Wahrscheinlich handelt es sich um eine andere Version von TGIFImage die auch einen anderen Dateinamen "GIFImage" hat.
Natürlich muss die tatsächlich verwendete
Unit angegeben werden, bzw. stand bei dir schon drin.
Versuchs dann so:
Delphi-Quellcode:
var
Options: TGIFDrawOptions;
with ImagePferd.Picture do
begin
if Graphic is TGIFImage then
begin
Options := TGIFImage(Graphic).DrawOptions;
Include(Options, goLoopContinously);
TGIFImage(Graphic).DrawOptions := Options;
end;
end;