Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

HandwritingView.Closed 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 handwriting view panel is closed.

// Register
event_token Closed(TypedEventHandler<HandwritingView, HandwritingPanelClosedEventArgs const&> const& handler) const;

// Revoke with event_token
void Closed(event_token const* cookie) const;

// Revoke with event_revoker
HandwritingView::Closed_revoker Closed(auto_revoke_t, TypedEventHandler<HandwritingView, HandwritingPanelClosedEventArgs const&> const& handler) const;
public event TypedEventHandler<HandwritingView,HandwritingPanelClosedEventArgs> Closed;
function onClosed(eventArgs) { /* Your code */ }
handwritingView.addEventListener("closed", onClosed);
handwritingView.removeEventListener("closed", onClosed);
- or -
handwritingView.onclosed = onClosed;
Public Custom Event Closed As TypedEventHandler(Of HandwritingView, HandwritingPanelClosedEventArgs) 

Event Type

Applies to

See also


Feedback

Was this page helpful?