Class TabMovingEventArgs
Contains information about the TabMoving event.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TabMovingEventArgs : SyncfusionCancelEventArgs
Constructors
TabMovingEventArgs(Int32, Int32)
Initializes a new instance of the TabMovingEventArgs class.
Declaration
public TabMovingEventArgs(int from, int target)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | The index of the TabPageAdv which is moved from. |
System.Int32 | target | The target index of the TabPageAdv which is moved to. |
Properties
From
Gets the index of Tab to be moved from.
Declaration
[TraceProperty(true)]
public int From { get; }
Property Value
Type |
---|
System.Int32 |
Target
Gets the Tab index where the Tab should be inserted.
Declaration
[TraceProperty(true)]
public int Target { get; }
Property Value
Type |
---|
System.Int32 |