ActivationMode
Determines which pane should be activated when the selected is removed.
Definition
Namespace:Telerik.Windows.Controls.Docking
Assembly:Telerik.Windows.Controls.Docking.dll
Syntax:
public enum ActivationMode
Fields
The first non disabled and visible item in the items collection is activated.
First = 0
The last non disable and visible item in the items collection is activated.
Last = 1
The previous activated item in the items collection is activated. If there is no such item the first non disabled and visible item is activated. If there is no such item no action is performed.
LastActivated = 4
The next non disabled and visible item in the items collection is activated. If there is no such item the previous non disabled and visible item is activated. If there is no such item no action is performed.
Next = 3
The previous non disabled and visible item in the items collection is activated. If there is no such item the next non disabled and visible item is activated. If there is no such item no action is performed.
Previous = 2