Class PreviewDockHintsEventArgs
Provides data to the PreviewDockHints event of the DockingManager control.
Inheritance
System.Object
System.EventArgs
PreviewDockHintsEventArgs
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 PreviewDockHintsEventArgs : EventArgs
Constructors
PreviewDockHintsEventArgs(Control, Control, DockAbility, Boolean)
Creates a new instance of the PreviewDockHintsEventArgs class.
Declaration
public PreviewDockHintsEventArgs(Control draggingSource, Control draggingTarget, DockAbility dockability, bool isOuterDockHints)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.Control | draggingSource | Dragging source of the window. |
System.Windows.Forms.Control | draggingTarget | Dragging target of the window. |
DockAbility | dockability | Dockability of inner and ourter window. |
System.Boolean | isOuterDockHints | Indicates PreviewDockHints occurred for inner dockability or outer dockability. |
Properties
DockAbility
Gets or sets the dockability to decide the visibility of dock hints on mouse hover the target window or edges on DockingManager.
Declaration
public DockAbility DockAbility { get; set; }
Property Value
Type |
---|
DockAbility |
DraggingSource
Gets the dragging element of DockingManager that raises the PreviewDockHints event.
Declaration
public Control DraggingSource { get; }
Property Value
Type |
---|
System.Windows.Forms.Control |
DraggingTarget
Gets the target element in which dragging window of DockingManager to be docked.
Declaration
public Control DraggingTarget { get; }
Property Value
Type |
---|
System.Windows.Forms.Control |
IsOuterDockHints
Gets values that specify PreviewDockHints occurred for inner dockability or outer dockability of dragging child in DockingManager.
Declaration
public bool IsOuterDockHints { get; }
Property Value
Type |
---|
System.Boolean |