'Declaration
Public Event ManipulationInertiaStarting As ManipulationInertiaStartingEventHandler
public event ManipulationInertiaStartingEventHandler ManipulationInertiaStarting
Event Data
The event handler receives an argument of type ManipulationInertiaStartingRoutedEventArgs containing data related to this event. The following ManipulationInertiaStartingRoutedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Container | Gets the UIElement that is considered the container of the manipulation. |
Cumulative | Gets the overall changes since the beginning of the manipulation. |
Delta | Gets the most recent changes of the current manipulation, as a ManipulationDelta. |
ExpansionBehavior | Get or sets the rate of slowdown of expansion inertial movement. |
Handled | Gets or sets a value that marks the routed event as handled. A true value for Handled prevents most handlers along the event route from handling the same event again. |
OriginalSource | (Inherited from Windows.UI.Xaml.RoutedEventArgs) |
PointerDeviceType | Gets the PointerDeviceType for the pointer device involved in the manipulation. |
RotationBehavior | Gets information about the rotation information associated with the manipulation for this event occurrence. |
TranslationBehavior | Gets information about the translation information associated with the manipulation for this event occurrence. |
Velocities | Gets the rates of the most recent changes to the manipulation. |
See Also