CoreComponentInputSource.TouchHitTesting Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raised for a touch hit test on a hosted XAML element.
// Register
event_token TouchHitTesting(TypedEventHandler<IInspectable, TouchHitTestingEventArgs const&> const& handler) const;
// Revoke with event_token
void TouchHitTesting(event_token const* cookie) const;
// Revoke with event_revoker
CoreComponentInputSource::TouchHitTesting_revoker TouchHitTesting(auto_revoke_t, TypedEventHandler<IInspectable, TouchHitTestingEventArgs const&> const& handler) const;
public event TypedEventHandler<object,TouchHitTestingEventArgs> TouchHitTesting;
function onTouchHitTesting(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("touchhittesting", onTouchHitTesting);
coreComponentInputSource.removeEventListener("touchhittesting", onTouchHitTesting);
- or -
coreComponentInputSource.ontouchhittesting = onTouchHitTesting;
Public Custom Event TouchHitTesting As TypedEventHandler(Of Object, TouchHitTestingEventArgs)
Event Type
TypedEventHandler<IInspectable,TouchHitTestingEventArgs>