/// <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(); } }