PickBox Method (PickBoxStyle)


Invokes a general purpose two-click editor that lets the user to specify a rectangular area on the screen.

Namespace: Autodesk.Revit.UI.Selection
Assembly: RevitAPIUI (in RevitAPIUI.dll) Version: 24.0.0.0 (24.0.0.0)

Syntax

C#
public PickedBox PickBox(
	PickBoxStyle style
)
Visual Basic
Public Function PickBox ( _
	style As PickBoxStyle _
) As PickedBox
Visual C++
public:
PickedBox^ PickBox(
	PickBoxStyle style
)

Parameters

style
Type: Autodesk.Revit.UI.SelectionPickBoxStyle
Specifies the value that controls the style of the pick box.

Return Value

The picked box that contains two XYZ points.

Remarks

The method starts an editor and returns when it finishes. Returns a PickedBox that contains two XYZ points.

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentOutOfRangeExceptionThrown when the style is not a recognized value.
Autodesk.Revit.ExceptionsOperationCanceledExceptionThrown when the Revit user cancelled this operation. Thrown when the Revit user tried to switch the active view, close the active document or Revit application when responding to this mode.

See Also