Alsing.Windows.Forms.SyntaxBox.Selection.ClearSelection C# (CSharp) Method

ClearSelection() public method

Clear the active selection DeleteSelection
public ClearSelection ( ) : void
return void
        public void ClearSelection()
        {
            Bounds.FirstColumn = Control.Caret.Position.X;
            Bounds.FirstRow = Control.Caret.Position.Y;
            Bounds.LastColumn = Control.Caret.Position.X;
            Bounds.LastRow = Control.Caret.Position.Y;
        }