Editing a TAdvTreeViewNode

Hi, I'm looking for some example code that will show me how to enable editing of a TAdvTreeViewNode. This would be to just edit the text in the columns for certain nodes.

Hi, You can enable editing via the columns:



AdvTreeView1.Columns[0].EditorType := tcetEdit;

Thanks!