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