Class TabItemDragDropInfo
Class which provides all needed information for drag drop of tabs between and inside RadTabbedWindows.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.TabbedWindow
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class TabItemDragDropInfo
Constructors
TabItemDragDropInfo()
Initializes a new instance of the TabItemDragDropInfo class.
Declaration
public TabItemDragDropInfo()
Properties
DraggedTab
The dragged RadTabItem.
Declaration
public RadTabItem DraggedTab { get; set; }
Property Value
RadTabItem
|
IsDropBeforeItem
Indicates whether drop is before or after the target item.
Declaration
public bool IsDropBeforeItem { get; set; }
Property Value
System.Boolean
|
IsDropInTabStripSuccessful
Indicates the drop operations is successful - dragged item is dropped onto target TabControl.
Declaration
public bool IsDropInTabStripSuccessful { get; set; }
Property Value
System.Boolean
|
RelativeStartPoint
The relative drag start point in the dragged tab.
Declaration
public Point RelativeStartPoint { get; set; }
Property Value
System.Windows.Point
|
SourceTabControl
Declaration
public TabbedWindowTabControl SourceTabControl { get; set; }
Property Value
TabbedWindowTabControl
|
SourceWindow
The source window of the dragged tab.
Declaration
public RadTabbedWindow SourceWindow { get; set; }
Property Value
RadTabbedWindow
|