Morph event

Hi,

I know there is an event for object transformation which include the transform and the objects:

 RhinoDoc.BeforeTransformObjects += RhinoDoc_BeforeTransformObjects;
 static void RhinoDoc_BeforeTransformObjects(object sender, RhinoTransformObjectsEventArgs e)
 {
 }

But is available any event to catch the morphs for document objects?

Thanks in advance

No that is not possible. What you can do is use the RhinoDoc.ReplaceRhinoObject, RhinoDoc.DeleteRhinoObject and RhinoDoc.AddRhinoObject events to detect if an object has been changed. These events are fired in that order when a morph (or any other non-destructive change) is executed. You will not get information about the exact nature of the morphing though.

Thanks Menno!