ICSharpCode.TextEditor.Caret.ManagedCaret.SetPosition C# (CSharp) Method

SetPosition() public method

public SetPosition ( int x, int y ) : bool
x int
y int
return bool
			public override bool SetPosition(int x, int y)
			{
				this.x = x - 1;
				this.y = y;
				return true;
			}
			public override void PaintCaret(Graphics g)