Note

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

Access to this page requires authorization. You can try .

TreeView.ItemInvoked 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 an item in the tree is invoked.

// Register
event_token ItemInvoked(TypedEventHandler<TreeView, TreeViewItemInvokedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
TreeView::ItemInvoked_revoker ItemInvoked(auto_revoke_t, TypedEventHandler<TreeView, TreeViewItemInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<TreeView,TreeViewItemInvokedEventArgs> ItemInvoked;
function onItemInvoked(eventArgs) { /* Your code */ }
treeView.addEventListener("iteminvoked", onItemInvoked);
treeView.removeEventListener("iteminvoked", onItemInvoked);
- or -
treeView.oniteminvoked = onItemInvoked;
Public Custom Event ItemInvoked As TypedEventHandler(Of TreeView, TreeViewItemInvokedEventArgs) 

Event Type

Remarks

This event is not fired when the item's multiple-selection checkbox is checked or unchecked.

Applies to


Feedback

Was this page helpful?