So in my add-in standalone tables are created and I subscribe to row change Events. This handles when a single row is modified directly from the attribute table.
rowCreateToken = RowCreatedEvent.Subscribe(OnRowCreateEvent, layerTable);
rowDeleteToken = RowDeletedEvent.Subscribe(OnRowDeleteEvent, layerTable);
rowChangedToken = RowChangedEvent.Subscribe(OnRowChangedEvent, layerTable);
This doesn't get triggered when the user uses the Calculate Field option to edit the table. What options do I have to have a function called when data is edited this way?