Alsing.Windows.Forms.SyntaxBox.EditViewControl.CharFromPixel C# (CSharp) Method

CharFromPixel() public method

Returns a point where x is the column and y is the row from a given pixel position.
public CharFromPixel ( int x, int y ) : TextPoint
x int X Position in pixels
y int Y Position in pixels
return Alsing.SourceCode.TextPoint
        public TextPoint CharFromPixel(int x, int y)
        {
            return Painter.CharFromPixel(x, y);
        }