ClearSelection() public method

public ClearSelection ( ) : void
return void
 public override void ClearPreviousSelection()
 {
     if (this._currentSelectionRange != null)
     {
         _currentSelectionRange.ClearSelection();
         _currentSelectionRange = null;
         this.RootCssBox.InvalidateGraphics(this.currentSelectionArea);
         this.currentSelectionArea = Rectangle.Empty;
     }
     hasSomeSelectedArea = false;
 }