Windows.UI.Xaml.Input.ManipulationStartedRoutedEventArgs.Complete C# (CSharp) Method

Complete() public method

public Complete ( ) : void
return void
		public extern void Complete();
	}

Usage Example

 private void UIElement_OnManipulationStarted(object sender, ManipulationStartedRoutedEventArgs e)
 {
     e.Handled = true;
     e.Complete();
 }
All Usage Examples Of Windows.UI.Xaml.Input.ManipulationStartedRoutedEventArgs::Complete
ManipulationStartedRoutedEventArgs