TeachingTip.ActionButtonClick 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 after the action button is clicked.
// Register
event_token ActionButtonClick(TypedEventHandler<TeachingTip, IInspectable const&> const& handler) const;
// Revoke with event_token
void ActionButtonClick(event_token const* cookie) const;
// Revoke with event_revoker
TeachingTip::ActionButtonClick_revoker ActionButtonClick(auto_revoke_t, TypedEventHandler<TeachingTip, IInspectable const&> const& handler) const;
public event TypedEventHandler<TeachingTip,object> ActionButtonClick;
function onActionButtonClick(eventArgs) { /* Your code */ }
teachingTip.addEventListener("actionbuttonclick", onActionButtonClick);
teachingTip.removeEventListener("actionbuttonclick", onActionButtonClick);
- or -
teachingTip.onactionbuttonclick = onActionButtonClick;
Public Custom Event ActionButtonClick As TypedEventHandler(Of TeachingTip, Object)
Event Type
TypedEventHandler<TeachingTip,IInspectable>