TTMSFNCTreeView Insert Key

Has anyone tried inserting/deleting nodes by detecting Insert/Delete Key in Keyup?

Hi, 


You should be able to do this with this sample code

  var KeyChar: Char; Shift: TShiftState);
begin
  if Key = KEY_INSERT then
    TMSFNCTreeView1.SelectedNode.Nodes.Add;
end;