using System;
namespace DevComponents.Tree
{
	/// 
	/// rovides data for TreeGX Cell events that can be canceled.
	/// 
	public class TreeGXCellCancelEventArgs:TreeGXCellEventArgs
	{
		/// 
		/// Default constructor for event data.
		/// 
		/// Type of the action event is raised for.
		/// Cell that event is raised for.
		public TreeGXCellCancelEventArgs(eTreeAction action, Cell cell):base(action,cell)
		{
		}
		
		/// 
		/// Indicates that event action should be canceled.
		/// 
		public bool Cancel=false;
	}
}