namespace DevComponents.Tree
{
	/// 
	/// Summary description for TreeAreaInfo.
	/// 
	internal class TreeAreaInfo
	{
		/// 
		/// Reference to parent node in which child bounds the coordinates are. Can be null if no parent node contains given coordinates.
		/// 
		public Node ParentAreaNode=null;
		/// 
		/// Node which contains specified coordinates. Can be null if no node contains coordinates.
		/// 
		public Node NodeAt=null;
		/// 
		/// Previous reference node for given coordinates. If coordinates fall between two nodes this will indicate previous node or null.
		/// 
		public Node PreviousNode=null;
		/// 
		/// Next reference node for given coordinates. If coordinates fall between two nodes this will indicate next node or null.
		/// 
		public Node NextNode=null;
	}
}