Click or drag to resize

Scene.PickRectangular Method

Executes a pick in the given rectangular region and returns a depth sorted collection of picked objects. The coordinate origin is top, left. To pick screen overlays, use the PickScreenOverlays(Int32, Int32) method.

Namespace:  AGI.Foundation.Graphics
Assembly:  AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public Collection<PickResult> PickRectangular(
	int left,
	int bottom,
	int right,
	int top
)

Parameters

left
Type: System.Int32
The left x coordinate of the rectangle in the Insight3D control.
bottom
Type: System.Int32
The bottom y coordinate of the rectangle in the Insight3D control.
right
Type: System.Int32
The right x coordinate of the rectangle in the Insight3D control.
top
Type: System.Int32
The top y coordinate of the rectangle in the Insight3D control.

Return Value

Type: Collection<PickResult>
A collection of depth sorted PickResults
See Also