Clear() public method

public Clear ( ) : void
return void
 void ClearSelection()
 {
     if (_selectionStart != _caretPosition)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = _caretPosition;
     }
 }
Example #2
0
 void ClearSelection()
 {
     if (_selectionStart != null)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = null;
     }
 }