DialogsShowNumberBox Method (String, String, Double, Double, Double) |
Displays Rhino's number edit box.
Namespace:
Rhino.UI
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static bool ShowNumberBox(
string title,
string message,
ref double number,
double minimum,
double maximum
)
Public Shared Function ShowNumberBox (
title As String,
message As String,
ByRef number As Double,
minimum As Double,
maximum As Double
) As Boolean
Parameters
- title
- Type: SystemString
The dialog title. - message
- Type: SystemString
The dialog message. - number
- Type: SystemDouble
The default and return value. - minimum
- Type: SystemDouble
The minimum allowable value. - maximum
- Type: SystemDouble
The maximum allowable value.
Return Value
Type:
Booleantrue of OK was clicked, false otherwise.
See Also