namespace Core.Common.Controls.Swf.TreeViewControls
{
///
/// Enum to specify whether the mouse is above or below a treenode.
///
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
}
}