Hooks for Properties Panel Edits?

I was looking at the anatomy of hooks

to see if there is one for when a user clicks in a field like Comments, it would trigger something


I’m trying to explore if I can make a pop up text editor when users click in text parameter fields so that we can see all the text in a nice wrapped window.

The 2026 Revit API provides access to these events:

UI Application Events

Application Class Events

https://apidocs.co/apps/revit/2026/54d437bf-87bb-1ba5-9357-8989c3da5ca7.htm

Controlled Application Events

https://apidocs.co/apps/revit/2026/b86712d6-83b3-e044-8016-f9881ecd3800.htm

No event specific to the property panel per se.
But in itself, this is a Transaction, The Document is Changed, so you could piggy back on the DocumentChanged event for example:

https://apidocs.co/apps/revit/2026/8fd170b2-df48-209b-438e-54ec7b01b664.htm#

The idling event is another option, but may overload Revit

2 Likes