using System;
namespace DevComponents.Tree
{
	/// 
	/// Provides data for TreeGX Node events.
	/// 
	public class TreeGXNodeEventArgs:EventArgs
	{
		/// 
		/// Default constructor.
		/// 
		/// Default action
		/// Default node.
		public TreeGXNodeEventArgs(eTreeAction action, Node node)
		{
			this.Action = action;
			this.Node = node;
		}
		
		/// 
		/// Indicates the type of the action performed on a node.
		/// 
		public eTreeAction Action=eTreeAction.Code;
		
		/// 
		/// Indicates the node that action is peformed on.
		/// 
		public DevComponents.Tree.Node Node=null;
	}
}