You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Event that is fired when an element is expanded */readonly onDidExpandElement: Event<T>;/** * Event that is fired when an element is collapsed */readonly onDidCollapseElement: Event<T>;/** * Currently selected elements. */
readonly selection: ReadonlyArray<T>;
Test that above events are getting triggered correctly when an element is expanded or collapsed or selected. Also verify that correct data is passed to the call back.
The text was updated successfully, but these errors were encountered:
Refs: #49511 #30535
Complexity: 2
Write an extension that contributes a tree view to the Explorer. Refer to documentation and [samples] (https://github.com/Microsoft/vscode-extension-samples/tree/master/tree-view-sample).
Now you can listen to following
Treeview
eventsTest that above events are getting triggered correctly when an element is expanded or collapsed or selected. Also verify that correct data is passed to the call back.
The text was updated successfully, but these errors were encountered: