please help me
What are you talking about?
The screen coordinate of the grasshopper window > the upper left corner of the canvas?
The grasshopper canvas offset-position in the grasshopper window?
Please argumentate, elaborate.
I am not sure this is relevant, but you can activate the compass widget in the preferences, that will guide you towards that position.
thank you it is…Is the point coordinates of the top left corner of the rectangle of the grasshopper canvas, which should be used to obtain this? I developed a function where I want the top left corner of the view window to be the top left corner of the canvas
Hi again, sorry for late reply.
You can get that position with:
System.Drawing.Point location =
Grasshopper.Instances.ActiveCanvas.PointToScreen(new System.Drawing.Point(0, 0));
thank you , I want to be try
Thank you very much,its right!