Description:

After setting up options and so on, call GetPoint::Get to get a 3d point. The point is retrieved when the mouse goes down.

Syntax:
public GetResult Get()
Returns:
Type: GetResult
Available since:
5.0

Description:

After setting up options and so on, call this method to get a 2d or 3d point.

Syntax:
public GetResult Get(
bool onMouseUp,
bool get2DPoint
)
Parameters:
  • onMouseUp
  • Type: bool
  • If false, the point is returned when the left mouse button goes down. If true, the point is returned when the left mouse button goes up.
  • get2DPoint
  • Type: bool
  • If True then get a 2d point otherwise get a 2d point
Returns:
Type: GetResult
<b>GetResult.Point</b> if the user chose a 3d point; <b>GetResult.Point2d</b> if the user chose a 2d point; other enumeration value otherwise.
Available since:
5.12

Description:

After setting up options and so on, call this method to get a 3d point.

Syntax:
public GetResult Get(
bool onMouseUp
)
Parameters:
  • onMouseUp
  • Type: bool
  • If false, the point is returned when the left mouse button goes down. If true, the point is returned when the left mouse button goes up.
Returns:
Type: GetResult
<b>GetResult.Point</b> if the user chose a point; other enumeration value otherwise.
Available since:
5.0

Nothing found