Displays a dialog box prompting the user to enter a string value. The string value may span multiple lines.
rhinoscriptsyntax.EditBox (default_string=None, message=None, title=None)
rhinoscript.userinterface.EditBox (default_string=None, message=None, title=None)
default_string |
Optional. String. A default string value. |
message |
Optional. String. A prompt or message. |
title |
Optional. String. A dialog box title. |
String |
Multiple lines that are separated by carriage return-linefeed combinations if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
text = rs.EditBox(message="Enter some text")
print text