Access notes from grasshopper to rhino

Hi guys and girls;

anyone of you know if we can access rhino notes from grasshopper to wrote some information into the rhino note ?

I want to bake some information into this panel :

thanks for helping

You can get/set the Notes through this property (via C# or GHPython):

import Rhino as rc
rc.RhinoDoc.ActiveDoc.Notes = "Foo\nBar\nham"
1 Like

thx !