TabView.TabTearOutRequested Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
// 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)