Search notes:

VBA: attribute name.vb_procData.vb_invoke_func

The VBA function attribute vb_ProcData.vb_invoke_func is «generated» after recording a macro (at least in Excel).
After recording a macro, giving it the name rec and assigning the keyboard shortcut ctrl+T, adding a description, the corresponding Attribute lines looks like so:
Sub rec()
Attribute rec.VB_Description = "This macro was recorded to\nreveal Attribute values."
Attribute rec.VB_ProcData.VB_Invoke_Func = "t\n14"

   …

End Sub
Note that shortcut keys that were assigned with application.onKey (Excel) are not stored with such attributes

Index