Notes

Returns or sets the document's notes.  Notes are generally created by using Rhino's Notes command.

Syntax

rhinoscriptsyntax.Notes (newnotes=None)

rhinoscript.document.Notes (newnotes=None)

Parameters

newnotes

Optional.  String.  The notes to set.

Returns

String

If newnotes is not specified, the current notes if successful.

String

If newnotes is specified, the previous notes if successful.

Example

import rhinoscriptsyntax as rs

notes = rs.Notes()

if notes: rs.MessageBox(notes)