Error processing SSI file
(Leadtools.Controls)

Show in webframe

Velocity Property




Final horizontal and vertical velocity of the drag, if the drag was inertial.
Syntax
public LeadPointD Velocity {get; set;}
'Declaration
 
Public Property Velocity As LeadPointD

Property Value

The final horizontal and vertical velocity of the drag, if the drag was inertial.
Remarks
C# Example
              time_delta = drag_completed_time_stamp - drag_started_time_stamp; // In Milliseconds
              veclocity.x = (Position.X - Origin.X) / time_delta;
              veclocity.y = (Position.Y - Origin.Y) / time_delta;
            
Requirements

Target Platforms

See Also

Reference

InteractiveDragCompletedEventArgs Class
InteractiveDragCompletedEventArgs Members

Error processing SSI file