Enum SelectedItemRemoveBehaviour
Determines what action should be performed when SelectedItem is removed.
Namespace: Telerik.Windows.Controls.TabControl
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public enum SelectedItemRemoveBehaviour
SelectFirst
The first non disable and visible item in the items collection is selected.
SelectLast
The last non disable and visible item in the items collection is selected.
SelectNext
The next non disable and visible item in the items collection is selected. If there is no such item the previous non disable and visible item is selected. If there is no such item no action is performed.
SelectNone
No action is performed.
SelectPrevious
The previous non disable and visible item in the items collection is selected. If there is no such item the next non disable and visible item is selected. If there is no such item no action is performed.