Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

TreeView.CanStartDrag

protected bool CanStartDrag(IMGUI.Controls.TreeView.CanStartDragArgs args);

Description

This function is called whenever a TreeViewItem is clicked and dragged. It returns false by default.

Override this function so it returns true to enable drag and drop behavior for TreeViewItems.

You control TreeView drag and drop in the following order:
1) override CanStartDrag to enable dragging TreeViewItems.
2) override SetupDragAndDrop to set which TreeViewItems are dragged.
3) override HandleDragAndDrop to control the drag and drop behavior of the TreeView.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答