InputNonClientPointerSource.CaptionTapped 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.
Occurs when the window caption reports a tap action by the pointer.
// Register
event_token CaptionTapped(TypedEventHandler<InputNonClientPointerSource, NonClientCaptionTappedEventArgs const&> const& handler) const;
// Revoke with event_token
void CaptionTapped(event_token const* cookie) const;
// Revoke with event_revoker
InputNonClientPointerSource::CaptionTapped_revoker CaptionTapped(auto_revoke_t, TypedEventHandler<InputNonClientPointerSource, NonClientCaptionTappedEventArgs const&> const& handler) const;
public event TypedEventHandler<InputNonClientPointerSource,NonClientCaptionTappedEventArgs> CaptionTapped;
function onCaptionTapped(eventArgs) { /* Your code */ }
inputNonClientPointerSource.addEventListener("captiontapped", onCaptionTapped);
inputNonClientPointerSource.removeEventListener("captiontapped", onCaptionTapped);
- or -
inputNonClientPointerSource.oncaptiontapped = onCaptionTapped;
Public Custom Event CaptionTapped As TypedEventHandler(Of InputNonClientPointerSource, NonClientCaptionTappedEventArgs)