Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.81 KB

uielement_canceldirectmanipulations_1164631120.md

File metadata and controls

26 lines (17 loc) · 1.81 KB
-api-id -api-type
M:Windows.UI.Xaml.UIElement.CancelDirectManipulations
winrt method

Windows.UI.Xaml.UIElement.CancelDirectManipulations

-description

Cancels ongoing direct manipulation processing (system-defined panning/zooming) on any ScrollViewer parent that contains the current UIElement.

-returns

true if a ScrollViewer parent exists and setting the value resulted in canceling the panning/zooming action. false if calling the method results in no action.

-remarks

You might call this method if you want the target UIElement to be able to process ongoing manipulations through the lower-level pointer events (PointerPressed, PointerMoved and so on). By default, if the target UIElement is contained in a ScrollViewer, that ScrollViewer parent would handle translation manipulations directly at the system level, treating them as pan or zoom. Manipulation handling by the ScrollViewer parent prevents the contained UIElement from receiving the pointer events (they would be marked as handled). Call CancelDirectManipulations to override this default behavior for an ongoing manipulation, and then you'll be able to handle manipulations at a non-system level for the individual UIElement target.

-examples

-see-also

ManipulationMode, Gestures, manipulations, and interactions