Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SelectionClick(TreeViewItem<TIdentifier>, bool)

Use this method in TreeView<TIdentifier>.RowGUI to peform the logic of a mouse click.
Read time 1 minuteLast updated 12 days ago

Definition

SelectionClick(TreeViewItem<T>, bool)

protected void SelectionClick(TreeViewItem<TIdentifier> item, bool keepMultiSelection)

Parameters

TreeViewItem clicked.

keepMultiSelection

If true then keeps the multiselection when clicking on a item already part of the selection. If false then clears the selection before selecting the item clicked. For left button clicks this is usually false. For context clicks it is usually true so a context opereration can operate on the multiselection.

Remarks

This method handles multi-selection when using modifier keys together with the mouse click. It is called automatically if the event is not used by the TreeView<TIdentifier>.RowGUI method.