Arguments which are passed to ItemMovedEventHandler.
Inheritance: System.EventArgs
 /// <summary>
 /// Raises event after list item has been moved.
 /// </summary>
 /// <param name="args">Event arguments.</param>
 protected virtual void OnItemMoved(ItemMovedEventArgs args)
 {
     if (ItemMoved != null)
         ItemMoved(this, args);
 }