using System;
namespace DevComponents.Tree
{
	/// 
	/// Provides data for TreeGX Node events that can be cancelled.
	/// 
	public class TreeGXNodeCancelEventArgs:TreeGXNodeEventArgs
	{
		/// 
		/// Default constructor.
		/// 
		/// Default action
		/// Default node.
		public TreeGXNodeCancelEventArgs(eTreeAction action, Node node):base(action,node)
		{
		}
		
		/// 
		/// Indicates that event action should be canceled.
		/// 
		public bool Cancel=false;
	}
}