/// <summary>
 /// Moves seleceted element to right
 /// </summary>
 public void MoveRight()
 {
     if (this.handlerCol != null)
     {
         handlerCol.MoveRight();
     }
     if (this.selectedElement != null)
     {
         this.StoreInBuffer(BufferOperation.Update, this.selectedElement);
         selectedElement.MoveRight();
     }
 }