Clear() public method

public Clear ( ) : void
return void
Exemplo n.º 1
0
 void ClearSelection()
 {
     if (_selectionStart != _caretPosition)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = _caretPosition;
     }
 }
Exemplo n.º 2
0
 void ClearSelection()
 {
     if (_selectionStart != null)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = null;
     }
 }