Clear() 공개 메소드

public Clear ( ) : void
리턴 void
예제 #1
0
 void ClearSelection()
 {
     if (_selectionStart != _caretPosition)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = _caretPosition;
     }
 }
예제 #2
0
 void ClearSelection()
 {
     if (_selectionStart != null)
     {
         if (_selectionShape != null)
         {
             _selectionShape.Clear();
         }
         _selectionStart = null;
     }
 }