Class PanEventArgs
Event data for Pan event
public class PanEventArgs : EventArgs
- Inheritance
-
PanEventArgs
Constructors
PanEventArgs(PointF, Vector2, Vector2)
Initialize Pan event args
public PanEventArgs(PointF location, Vector2 velocity, Vector2 delta)
Parameters
Properties
Delta
Translation delta since the begining of Pan event
public Vector2 Delta { get; }
Property Value
Location
Position on pan event (Scene coordinates)
public PointF Location { get; }
Property Value
Velocity
Velocity on pan event
public Vector2 Velocity { get; }