/// <summary> /// Get css link href at the given x,y location. /// </summary> /// <param name="location">the location to find the link at</param> /// <returns>css link href if exists or null</returns> public string GetLinkAt(Point location) { return(_htmlContainerInt.GetLinkAt(Utils.Convert(location))); }
/// <summary> /// Get css link href at the given x,y location. /// </summary> /// <param name="location">the location to find the link at</param> /// <returns>css link href if exists or null</returns> public string GetLinkAt(RPoint location) { return(_htmlContainerInt.GetLinkAt(location)); }