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