Returns or sets the document's notes. Notes are generally created by using Rhino's Notes command.
rhinoscriptsyntax.Notes (newnotes=None)
rhinoscript.document.Notes (newnotes=None)
newnotes |
Optional. String. The notes to set. |
String |
If newnotes is not specified, the current notes if successful. |
String |
If newnotes is specified, the previous notes if successful. |
import rhinoscriptsyntax as rs
notes = rs.Notes()
if notes: rs.MessageBox(notes)