TabView.TabTearOutRequested Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
// 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)