Alsing.Windows.Forms.SyntaxBoxControl.IsOverSelection C# (CSharp) Method

IsOverSelection() public method

Takes a pixel position and returns true if that position is inside the selected text.
public IsOverSelection ( int x, int y ) : bool
x int Pixel x position.
y int Pixel y position
return bool
        public bool IsOverSelection(int x, int y)
        {
            return ((EditViewControl) _ActiveView).IsOverSelection(x, y);
        }