Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

TabView.AddTabButtonClick 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.

Occurs when the add tab button (+) has been clicked.

// Register
event_token AddTabButtonClick(TypedEventHandler<TabView, IInspectable const&> const& handler) const;

// Revoke with event_token
void AddTabButtonClick(event_token const* cookie) const;

// Revoke with event_revoker
TabView::AddTabButtonClick_revoker AddTabButtonClick(auto_revoke_t, TypedEventHandler<TabView, IInspectable const&> const& handler) const;
public event TypedEventHandler<TabView,object> AddTabButtonClick;
function onAddTabButtonClick(eventArgs) { /* Your code */ }
tabView.addEventListener("addtabbuttonclick", onAddTabButtonClick);
tabView.removeEventListener("addtabbuttonclick", onAddTabButtonClick);
- or -
tabView.onaddtabbuttonclick = onAddTabButtonClick;
Public Custom Event AddTabButtonClick As TypedEventHandler(Of TabView, Object) 

Event Type

Remarks

For more info, design guidance, and code examples, see Tab view.

Applies to

See also


Feedback

Was this page helpful?