namespace Core.Common.Controls.TreeView
{
///
/// Enum to specify whether or not the mouse is above or below a tree node.
///
public enum PlaceholderLocation
{
///
/// Position the placeholder above the targetnode
///
Top,
///
/// position the placeholder below the targetnode
///
Bottom,
///
/// position the placeholder next to the targetnode
///
Middle,
///
/// do not draw a placeholder
///
None
}
}