2027 Method
Changes 0
M

Selection.PickPoint

Description:
Prompts the user to pick a point on the active work plane using specified snap settings while showing a custom status prompt string.
Remarks:
Revit users will be permitted to manipulate the Revit view (zooming, panning, and rotating the view), but will not be permitted to click other items in the Revit user interface. Users are not permitted to switch the active view, close the active document or Revit application in the pick session, otherwise an exception will be thrown.

Note: this method must not be called during dynamic update, otherwise ForbiddenForDynamicUpdateException will be thrown.

Overloads (4):
PickPoint
PickPoint(ObjectSnapTypes,String)
public XYZ PickPoint(
	ObjectSnapTypes snapSettings,
	string statusPrompt
)
  • snapSettings
    Specifies the object snap types for this pick. Multiple object snap types can be combined with "|"
  • String
    statusPrompt
    Specifies the message shown on the status bar.
Return Value XYZ The point picked by user. Note: if the user cancels the operation (for example, through ESC), the method will throw an OperationCanceledException instance.
public void PickPoint(UIDocument uidoc)
{
    ObjectSnapTypes snapTypes = ObjectSnapTypes.Endpoints | ObjectSnapTypes.Intersections;
    XYZ point = uidoc.Selection.PickPoint(snapTypes, "Select an end point or intersection");

    string strCoords = "Selected point is " + point.ToString();

    TaskDialog.Show("Revit", strCoords);
}