1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
4 using System
.Collections
.Generic
;
7 namespace Aga
.Controls
.Tree
9 public struct DropPosition
11 private TreeNodeAdv _node
;
12 public TreeNodeAdv Node
15 set { _node = value; }
18 private NodePosition _position
;
19 public NodePosition Position
21 get { return _position; }
22 set { _position = value; }