Class DocumentTabOrderChangingEventArgs
Provides data for the DocumentTabOrderChangingEventArgs event.
Inheritance
System.Object
DocumentTabOrderChangingEventArgs
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class DocumentTabOrderChangingEventArgs : EventArgs
Constructors
DocumentTabOrderChangingEventArgs()
Declaration
public DocumentTabOrderChangingEventArgs()
Properties
Cancel
Get or sets whether dragging option should be accepted or canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
NewIndex
Gets the tab index of item from TargetTabGroup.
Declaration
public int NewIndex { get; }
Property Value
Type |
---|
System.Int32 |
OldIndex
Gets the tab index of item from SourceTabGroup.
Declaration
public int OldIndex { get; }
Property Value
Type |
---|
System.Int32 |
SourceTabGroup
Gets the source tab group from which DocumentTab is dragged from.
Declaration
public DocumentTabControl SourceTabGroup { get; }
Property Value
Type |
---|
DocumentTabControl |
SourceTabItem
Get the document tab item which is being dragged.
Declaration
public object SourceTabItem { get; }
Property Value
Type | Description |
---|---|
System.Object | The dragging element of DockingManager. |
TargetTabGroup
Gets the target tab group to which DocumentTab is going to be dropped.
Declaration
public DocumentTabControl TargetTabGroup { get; }
Property Value
Type |
---|
DocumentTabControl |