Clear() public méthode

public Clear ( ) : void
Résultat void
 void ClearSelection()
 {
     if (_selectionStart != _caretPosition)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = _caretPosition;
     }
 }
Exemple #2
0
 void ClearSelection()
 {
     if (_selectionStart != null)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = null;
     }
 }