Alsing.Windows.Forms.SyntaxBox.EditViewControl.CharFromPixel C# (CSharp) 메소드

CharFromPixel() 공개 메소드

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
리턴 Alsing.SourceCode.TextPoint
        public TextPoint CharFromPixel(int x, int y)
        {
            return Painter.CharFromPixel(x, y);
        }