@Tom_ wrote:
i'm trying to implement a Custom Curve Object and keep track of changes.
How can i capture, if the user turn s on controlpoints with the command "_pointsOn";
I tried to override the GripsOn Property - but that does not work.thank s for any hint
public new bool GripsOn { get { Rhino.RhinoApp.WriteLine("MyCustomObj GripsOn Get"); return base.GripsOn; } set { Rhino.RhinoApp.WriteLine("MyCustomObj GripsOn Set"); base.GripsOn = value; } }
Posts: 1
Participants: 1