using System;
namespace DevComponents.AdvTree
{
	/// 
	/// Provides data for AdvTree Cell events.
	/// 
	public class AdvTreeCellEventArgs:EventArgs
	{
		/// 
		/// Default constructor for event data.
		/// 
		/// Type of the action event is raised for.
		/// Cell that event is raised for.
		public AdvTreeCellEventArgs(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 performed on.
		/// 
		public DevComponents.AdvTree.Cell Cell=null;
	}
}