Quantcast
Channel: Rhino Developer - McNeel Forum
Viewing all articles
Browse latest Browse all 8548

Custom Objects - raise event on GripsOn, notice _pointsOn Command

$
0
0

@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

Read full topic


Viewing all articles
Browse latest Browse all 8548

Trending Articles