static bool IsIconAvailable(IControl cell, String imageName)
        {
            IControl image = WebTableUtilities.GetImage(cell);
            bool     found = false;
            String   src   = Control_PropertyUtilities.GetAttributeValue(image, "src", out found);

            if (found)
            {
                return(src.ToUpper().Contains(imageName.ToUpper()));
            }
            return(false);
        }