TabView.TabTearOutRequested 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.
// Register
event_token TabTearOutRequested(TypedEventHandler<TabView, TabViewTabTearOutRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void TabTearOutRequested(event_token const* cookie) const;
// Revoke with event_revoker
TabView::TabTearOutRequested_revoker TabTearOutRequested(auto_revoke_t, TypedEventHandler<TabView, TabViewTabTearOutRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<TabView,TabViewTabTearOutRequestedEventArgs> TabTearOutRequested;
function onTabTearOutRequested(eventArgs) { /* Your code */ }
tabView.addEventListener("tabtearoutrequested", onTabTearOutRequested);
tabView.removeEventListener("tabtearoutrequested", onTabTearOutRequested);
- or -
tabView.ontabtearoutrequested = onTabTearOutRequested;
Public Custom Event TabTearOutRequested As TypedEventHandler(Of TabView, TabViewTabTearOutRequestedEventArgs)