예제 #1
0
 /// <summary>
 /// Moves selected element to left
 /// </summary>
 public void MoveLeft()
 {
     if (this.handlerCol != null)
     {
         handlerCol.MoveLeft();
     }
     if (this.selectedElement != null)
     {
         this.StoreInBuffer(BufferOperation.Update, this.selectedElement);
         selectedElement.MoveLeft();
     }
 }