Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
TabView.TabDragCompleted Event
Definition
- Namespace:
- Microsoft.UI.Xaml.Controls
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 when the user completes the drag action.
// Register
event_token TabDragCompleted(TypedEventHandler<TabView, TabViewTabDragCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void TabDragCompleted(event_token const* cookie) const;
// Revoke with event_revoker
TabView::TabDragCompleted_revoker TabDragCompleted(auto_revoke_t, TypedEventHandler<TabView, TabViewTabDragCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<TabView,TabViewTabDragCompletedEventArgs> TabDragCompleted;
function onTabDragCompleted(eventArgs) { /* Your code */ }
tabView.addEventListener("tabdragcompleted", onTabDragCompleted);
tabView.removeEventListener("tabdragcompleted", onTabDragCompleted);
- or -
tabView.ontabdragcompleted = onTabDragCompleted;
Public Custom Event TabDragCompleted As TypedEventHandler(Of TabView, TabViewTabDragCompletedEventArgs)
Event Type
Applies to
See also
Feedback
Was this page helpful?
