// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Input
{
///
/// Describes how focus should be moved.
///
public enum FocusNavigationDirection
{
///
/// Move the focus to the next control in the tab order.
///
Next,
///
/// Move the focus to the previous control in the tab order.
///
Previous,
///
/// Move the focus to the first control in the tab order.
///
First,
///
/// Move the focus to the last control in the tab order.
///
Last,
///
/// Move the focus to the left.
///
Left,
///
/// Move the focus to the right.
///
Right,
///
/// Move the focus up.
///
Up,
///
/// Move the focus down.
///
Down,
}
}