GetDrawingXPos() public method

public GetDrawingXPos ( int logicalLine, int logicalColumn ) : int
logicalLine int
logicalColumn int
return int
 public void SetDesiredColumn()
 {
     Caret.DesiredColumn = TextView.GetDrawingXPos(Caret.Line, Caret.Column) + (int)(VirtualTop.X * textView.WideSpaceWidth);
 }
Example #2
0
 public void SetDesiredColumn()
 {
     Caret.DesiredColumn = TextView.GetDrawingXPos(Caret.Line, Caret.Column) + VirtualTop.X;
 }
Example #3
0
        public void SetDesiredColumn()
        {
            Caret.DesiredColumn = TextView.GetDrawingXPos(Caret.Line, Caret.Column) + (int)(VirtualTop.X * textView.GetWidth(' '));
//			Console.WriteLine("SetDesiredColumn : " + Caret.DesiredColumn);
        }