public bool IsVisible(float x, float y, Graphics graphics)
        {
            // LAMESPEC : .Net is currently ignorig Graphics object
            //if (graphics != null && !graphics.IsVisible(x,y))
            //	return false;

            return(NativeObject.contains(x, y));
        }