Class DragEventArgs
Class to represent dragging event arguments.
Inheritance
System.Object
DragEventArgs
Namespace: Syncfusion.UI.Xaml.Controls.Layout
Assembly: Syncfusion.SfDockingManager.UWP.dll
Syntax
[ClassReference(IsReviewed = false)]
public class DragEventArgs : EventArgs
Constructors
DragEventArgs()
Initializes a new instance of the DragEventArgs class.
Declaration
[ClassReference(IsReviewed = false)]
public DragEventArgs()
DragEventArgs(Double, Double, PointerRoutedEventArgs, String)
Initializes a new instance of the DragEventArgs class.
Declaration
[ClassReference(IsReviewed = false)]
public DragEventArgs(double horizontalChange, double verticalChange, PointerRoutedEventArgs mouseEventArgs, string eventName)
Parameters
Type | Name | Description |
---|---|---|
System.Double | horizontalChange | The horizontal change. |
System.Double | verticalChange | The vertical change. |
Windows.UI.Xaml.Input.PointerRoutedEventArgs | mouseEventArgs | The Windows.UI.Xaml.Input.PointerRoutedEventArgs instance containing the event data. |
System.String | eventName | Name of the event. |
Properties
Event
Gets or sets a value indicating whether the horizontal change of the drag.
Declaration
[ClassReference(IsReviewed = false)]
public string Event { get; set; }
Property Value
Type | Description |
---|---|
System.String | The event. |
HorizontalChange
Gets or sets a value indicating whether the horizontal change of the drag.
Declaration
[ClassReference(IsReviewed = false)]
public double HorizontalChange { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The horizontal change. |
MouseEventArgs
Gets or sets a value indicating whether the mouse event args.
Declaration
[ClassReference(IsReviewed = false)]
public PointerRoutedEventArgs MouseEventArgs { get; set; }
Property Value
Type | Description |
---|---|
Windows.UI.Xaml.Input.PointerRoutedEventArgs | The mouse event args. |
VerticalChange
Gets or sets a value indicating whether the vertical change of the drag.
Declaration
[ClassReference(IsReviewed = false)]
public double VerticalChange { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The vertical change. |