DialogsShowEditBox Method |
Displays Rhino's string edit box.
Namespace:
Rhino.UI
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static bool ShowEditBox(
string title,
string message,
string defaultText,
bool multiline,
out string text
)
Public Shared Function ShowEditBox (
title As String,
message As String,
defaultText As String,
multiline As Boolean,
<OutAttribute> ByRef text As String
) As Boolean
Parameters
- title
- Type: SystemString
The dialog title. - message
- Type: SystemString
The dialog message. - defaultText
- Type: SystemString
The default text. - multiline
- Type: SystemBoolean
Set true for multi line editing. - text
- Type: SystemString
The modified text.
Return Value
Type:
Booleantrue of OK was clicked, false otherwise.
See Also