Question

Is there a way to tell if a treeview node is currently in edit mode?

I'm using the KeyUp event to determine if the delete key was hit - I only want to fire off my 'do you really want to delete this' code if the user is NOT editing.

This project is using Delphi 2010.

Was it helpful?

Solution

You can ask the TTreeView.IsEditing property. From the reference:

Indicates whether a node is currently being edited by the user. IsEditing returns true if any node label in the tree view is being edited.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top