Class TabOrderChangingEventArgs
Provides data for the TabOrderChangingEventArgs event.
Inheritance
System.Object
TabOrderChangingEventArgs
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class TabOrderChangingEventArgs : EventArgs
Constructors
TabOrderChangingEventArgs()
Declaration
public TabOrderChangingEventArgs()
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 target tab group.
Declaration
public int NewIndex { get; }
Property Value
Type |
---|
System.Int32 |
OldIndex
Gets the tab index of item from source tab group.
Declaration
public int OldIndex { get; }
Property Value
Type |
---|
System.Int32 |
TargetItem
Gets or sets the dragging element of DockingManager that raises the DocumentTabOrderChanging event.
Declaration
public object TargetItem { get; }
Property Value
Type | Description |
---|---|
System.Object | The dragging element of DockingManager. |