EditBox

Displays a dialog box prompting the user to enter a string value.  The string value may span multiple lines.

Syntax

rhinoscriptsyntax.EditBox (default_string=None, message=None, title=None)

rhinoscript.userinterface.EditBox (default_string=None, message=None, title=None)

Parameters

default_string

Optional.  String.  A default string value.

message

Optional.  String.  A prompt or message.

title

Optional.  String.  A dialog box  title.

Returns

String

Multiple lines that are separated by carriage return-linefeed combinations if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

text = rs.EditBox(message="Enter some text")

print text

 

 

Also See

GetString

StringBox