Kimono.KHTMLPart.IsPointInsideSelection C# (CSharp) Method

IsPointInsideSelection() public method

Returns whether the given point is inside the current selection. The coordinates are content-coordinates.
public IsPointInsideSelection ( int x, int y ) : bool
x int
y int
return bool
        public bool IsPointInsideSelection(int x, int y)
        {
            return (bool) interceptor.Invoke("isPointInsideSelection$$", "isPointInsideSelection(int, int)", typeof(bool), typeof(int), x, typeof(int), y);
        }
KHTMLPart