New to Telerik UI for WPFStart a free 30-day trial

Determines what action should be performed when SelectedItem is removed.

Definition

Namespace:Telerik.Windows.Controls.TabControl

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

C#
public enum SelectedItemRemoveBehaviour

Fields

The first non disable and visible item in the items collection is selected.

C#
SelectFirst = 1

The last non disable and visible item in the items collection is selected.

C#
SelectLast = 2

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.

C#
SelectNext = 4

No action is performed.

C#
SelectNone = 0

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.

C#
SelectPrevious = 3