Alsing.Windows.Forms.SyntaxBox.Caret.MoveAbsoluteEnd C# (CSharp) Method

MoveAbsoluteEnd() public method

Moves the caret to the absolute end of the active row
public MoveAbsoluteEnd ( bool Select ) : void
Select bool True if a selection should be created from the current caret pos to the new pos
return void
        public void MoveAbsoluteEnd(bool Select)
        {
            Position.X = Control.Document[Control.Document.Count - 1].Text.Length;
            Position.Y = Control.Document.Count - 1;
            RememberXPos();
            CaretMoved(Select);
        }