moel@345: using System;
moel@345: using System.Collections.Generic;
moel@345: using System.Text;
moel@345: 
moel@345: namespace Aga.Controls.Tree
moel@345: {
moel@345: 	public struct DropPosition
moel@345: 	{
moel@345: 		private TreeNodeAdv _node;
moel@345: 		public TreeNodeAdv Node
moel@345: 		{
moel@345: 			get { return _node; }
moel@345: 			set { _node = value; }
moel@345: 		}
moel@345: 
moel@345: 		private NodePosition _position;
moel@345: 		public NodePosition Position
moel@345: 		{
moel@345: 			get { return _position; }
moel@345: 			set { _position = value; }
moel@345: 		}
moel@345: 	}
moel@345: }