In VBA for MS-Word, and undoubtedly the rest of Office, there are some 'special' method (macro) names that intercept certain keystrokes / UI commands; for example:
Pressing Ctrl + z (or the undo icon on the QAT) is intercepted by
Public Sub EditUndo()Pressing Ctrlk + y (or the redo icon on the QAT) is intercepted by
Public Sub EditRedo()
The MS API documentation covers EditUndo and EditRedo, and helps find some other methods that can be overridden.
But neither NextCell nor PrevCell seem to be included in the VBA API documentation. For example Tab behavior is altered whenever the selection is in a document table:
Pressing Tab is intercepted by
Public Sub NextCell()Pressing Shift + Tab is intercepted by
Public Sub PrevCell()
This left me wondering if there are any other special method names... and how to find them.
So, my question (answer found during the asking) is:
