Sends a string of printable characters, including spaces, to Rhino's command line.
rhinoscriptsyntax.SendKeystrokes( keys=None, add_return=True )
rhinoscript.application.SendKeystrokes( keys=None, add_return=True )
keys |
Optional. String. A string to characters to send to the command line. |
add_return |
Optional. Boolean. Append a return character to the end of the string. The default is to append a return character (True). |
None.
import rhinoscriptsyntax as rs
rs.SendKeystroke( "Hello Rhino!" )
rs.SendKeystrokes( 25/4 )