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

MoveAbsoluteHome() public method

Moves the caret to the first column of the active row
public MoveAbsoluteHome ( 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 MoveAbsoluteHome(bool Select)
        {
            Position.X = 0;
            Position.Y = 0;
            RememberXPos();
            CaretMoved(Select);
        }