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

Descripción

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.