TreeList.isSelecting

Syntax

IsSelecting(): Boolean;

Description

The IsSelecting method determines selection mode attribute.

Example

To execute this example, Create a TreeList Component named treeListSett. Add a handler for the NodeHovered event:

treeListSett.NodeHovered.add(function (sender, args)
{
console.debug("Editing attribute: " + treeListSett.isEditing());
console.debug("Dragging attribute: " + treeListSett.isDraging());
console.debug("Selection attribute: " + treeListSett.isSelecting());
};

After executing the example, on hovering the mouse cursor over the element, the information about current selection/dragging/editing is displayed to the console.

See also:

TreeList