TreeView Xojo plugin

TreeViewCustomNode.MouseUp Event

This Event is fired when mouse buttons goes up in the custom node after mouse has gone down there and true was returned from the mouse down event.

MouseUp(
   x as Integer,
   y as Integer,
   ByRef triggerAction as Boolean,
   owner as TreeView) as Boolean

Parameters

x
The x coordinate, local to the node.
y
The y coordinate, local to the node.
triggerAction (ByRef parameter)
Set this ByRef parameter to true if you want to trigger the TreeView's NodeAction event.
owner
The control that owns the node.

Returns

Boolean
Return true here to trigger redraw of the node.

Remarks

See Also

TreeViewCustomNode Class