Class TileViewDragEventArgs
Class to represent dragging event arguments
Inheritance
System.Object
System.EventArgs
TileViewDragEventArgs
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.Shared
Assembly: Syncfusion.Shared.Wpf.dll
Syntax
public class TileViewDragEventArgs : EventArgs
Constructors
TileViewDragEventArgs(Double, Double, MouseEventArgs, String)
Contstructor with parameters
Declaration
public TileViewDragEventArgs(double horizontalChange, double verticalChange, MouseEventArgs mouseEventArgs, string eventName)
Parameters
Type | Name | Description |
---|---|---|
System.Double | horizontalChange | Horizontal change |
System.Double | verticalChange | Vertical change |
System.Windows.Input.MouseEventArgs | mouseEventArgs | The mouse event args |
System.String | eventName | The Event Name |
Properties
Event
Gets or sets the event
Declaration
public string Event { get; set; }
Property Value
Type |
---|
System.String |
HorizontalChange
Gets or sets the horizontal change of the drag
Declaration
public double HorizontalChange { get; set; }
Property Value
Type |
---|
System.Double |
MouseEventArgs
Gets or sets the mouse event args
Declaration
public MouseEventArgs MouseEventArgs { get; set; }
Property Value
Type |
---|
System.Windows.Input.MouseEventArgs |
VerticalChange
Gets or sets the vertical change of the drag
Declaration
public double VerticalChange { get; set; }
Property Value
Type |
---|
System.Double |