GetBaseClassAcceptPoint Method |
If you want to allow the user to be able to type in a point then call AcceptPoint(true)
before calling GetPoint()/GetObject(). If the user chooses to type in a number, then
the result code GetResult.Point is returned and you can use RhinoGet.Point()
to get the value of the point.
Namespace:
Rhino.Input.Custom
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public void AcceptPoint(
bool enable
)
Public Sub AcceptPoint (
enable As Boolean
)
Parameters
- enable
- Type: SystemBoolean
true if user is able to type in a point.
See Also