Package ilcd
Class GraphicInfo

Public Method isAnimated

boolean isAnimated()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns Description
isAnimated whether the graphic is animated or not

This method returns true if the graphic is animated.

Example

if (Control.getGraphicInfo(1).isAnimated())

{

  Draw.writeText(" This graphic supports animation! ");

}

else

{

  Draw.writeText(" This graphic does not support animation! ");

}

See also:

Control.getGraphicInfo(int)