namespace AntDesign
{
public enum FocusBehavior
{
///
/// When focuses, cursor will move to the last character
/// This is default behavior.
///
FocusAtLast,
///
/// When focuses, cursor will move to the first character
///
FocusAtFirst,
///
/// When focuses, the content will be selected
///
FocusAndSelectAll,
///
/// When focuses, content will be cleared
///
FocusAndClear
}
}