TabViewItem.CloseRequested 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.
Raised when the user attempts to close the TabViewItem via clicking the x-to-close button, CTRL+F4, or mousewheel.
// Register
event_token CloseRequested(TypedEventHandler<TabViewItem, TabViewTabCloseRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void CloseRequested(event_token const* cookie) const;
// Revoke with event_revoker
TabViewItem::CloseRequested_revoker CloseRequested(auto_revoke_t, TypedEventHandler<TabViewItem, TabViewTabCloseRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<TabViewItem,TabViewTabCloseRequestedEventArgs> CloseRequested;
function onCloseRequested(eventArgs) { /* Your code */ }
tabViewItem.addEventListener("closerequested", onCloseRequested);
tabViewItem.removeEventListener("closerequested", onCloseRequested);
- or -
tabViewItem.oncloserequested = onCloseRequested;
Public Custom Event CloseRequested As TypedEventHandler(Of TabViewItem, TabViewTabCloseRequestedEventArgs)