Vcl.Imaging.GIFImg.TGIFAnimationLoop
Delphi
TGIFAnimationLoop = (
glDisabled, // Never loop
glEnabled, // Loop is specified in GIF
glContinously // Loop continously regardless of GIF
);
C++
enum DECLSPEC_DENUM TGIFAnimationLoop : unsigned char { glDisabled, glEnabled, glContinously };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | Vcl.Imaging.GIFImg.pas Vcl.Imaging.GIFImg.hpp |
Vcl.Imaging.GIFImg | Vcl.Imaging.GIFImg |
Description
Specifies the animation loop behavior.
A variable of type TGIFAnimationLoop specifies the animation loop behaviour when displaying a GIF.
The following table lists the possible values of a variable of type TGIFAnimationLoop.
Value | Meaning |
---|---|
glDisabled |
Do not loop the animated GIF, regardless of what is specified in the GIF file. |
glEnabled |
The looping option is extracted from the GIF file. |
glContinously |
Loop continuously, regardless of what is specified in the GIF file. |