namespace Dragablz
{
///
/// Specifies where an item should appear when added to tab control, as the headers order do not
/// specifically correlate to the order of the the source items.
///
public enum AddLocationHint
{
///
/// Display item in the first position.
///
First,
///
/// Display item in the first position.
///
Last,
///
/// Display an item prior to the selected, or specified item.
///
Prior,
///
/// Display an item after the selected, or specified item.
///
After
}
}