Package ilcd
Class GraphicInfo

Public Method isTransparent

boolean isTransparent()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns Description
isTransparent whether the graphic is transparent or not

This method returns true if the graphic is transparent.

Example

if (Control.getGraphicInfo(1).istransparent())
{
  Draw.writeText(" This graphic is transparent! ");
}
else
{
  Draw.writeText(" This graphic is not transparent! ");
}

See also:

Control.getGraphicInfo(int)