How can I programmatically capture the event when there is a modification to the view table in RhinoDoc (e.g. when a new view is set by setView command)? I found there are events like GroupTableEvent, LayerTableEvent and MaterialTableEvent etc. in RhinoDoc (in C# SDK) but nothing for view table.
Try subscribing to (one of) these events:
Rhino.Display.RhinoView.Create
Rhino.Display.RhinoView.Rename
Rhino.Display.RhinoView.SetActive
Rhino.Display.RhinoView.Destroy
Thanks dale