TAdvTreeView: New event after handling of node selection

It would be helpful to have an event which is triggered after every handling of a complete node selection.
At the end of procedure TAdvCustomTreeView.HandleSelectNode there is already nearly that what I need:

    if not AKeyBoard and ATriggerEvents then
      DoNodeClick(ANode);

My wish is to get an event at exactly that point, but with no dependency of AKeyBoard:

    if ATriggerEvents then
      DoAfterNodeSelectionHandling(ANode);

Do you mean, you are programmatically selecting nodes, and want an event? Because the design is to never trigger events when programmatically selecting a node. Only via Mouse & Keyboard, either way, The OnAfterSelectNode event is triggered when selecting a node via Mouse or Keyboard.