The IsPointInside method returns whether the argument X,Y are inside the Circle. The X and Y values are absolute values.
float worldX = GuiManager.Cursor.WorldXAt(0);
float worldY = GuiManager.Cursor.WorldYAt(0);
bool isInside = CircleInstance.IsPointInside(worldX, worldY);