Class DockControlActivatingEventArgs
Provides data to the DockControlActivating event of the DockingManager control.
Inheritance
System.Object
System.EventArgs
DockControlActivatingEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class DockControlActivatingEventArgs : EventArgs
Constructors
DockControlActivatingEventArgs(Object, Object)
Creates a new instance of the DockControlActivatingEventArgs class.
Declaration
public DockControlActivatingEventArgs(object newvalue, object oldvalue)
Parameters
Type | Name | Description |
---|---|---|
System.Object | newvalue | New active control of the DockingManager. |
System.Object | oldvalue | Old active control of the DockingManager |
Properties
Cancel
Gets or sets a value that decides whether to cancel the active dock control changes in DockingManager.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
NewValue
Gets a new active control of DockingManager.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Gets the old active control of DockingManager.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |