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

Class which provides all needed information for drag drop of tabs between and inside RadTabbedWindows.

Definition

Namespace:Telerik.Windows.Controls.TabbedWindow

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

C#
public class TabItemDragDropInfo

Inheritance: objectTabItemDragDropInfo

Constructors

Initializes a new instance of the TabItemDragDropInfo class.

C#
public TabItemDragDropInfo()

Properties

The dragged RadTabItem.

C#
public RadTabItem DraggedTab { get; set; }

Indicates whether drop is before or after the target item.

C#
public bool IsDropBeforeItem { get; set; }

Indicates the drop operations is successful - dragged item is dropped onto target TabControl.

C#
public bool IsDropInTabStripSuccessful { get; set; }

The relative drag start point in the dragged tab.

C#
public Point RelativeStartPoint { get; set; }

Gets the source tab control from which a tab is being dragged.

C#
public TabbedWindowTabControl SourceTabControl { get; set; }

The source window of the dragged tab.

C#
public RadTabbedWindow SourceWindow { get; set; }