Environment.GetAllEntitiesUnderMouseCursor Method

Returns all the visible (on screen) top level and selectable entities (which may include the parents stack for nested entities) under the mouse cursor in the active viewport.
Public Function GetAllEntitiesUnderMouseCursor( _ 
ByVal mousePos As Point, _ 
Optional ByVal selectableOnly As Boolean = true _ 
) As Integer()
This language is not supported or no code example is available.
public int[] GetAllEntitiesUnderMouseCursor( 
Point mousePos
bool selectableOnly = true 
)
This language is not supported or no code example is available.

Parameters

mousePos
Point

Mouse position in screen coordinates

selectableOnly
bool

When true, checks the Entity.Selectable property, otherwise no.

Return Value

int[]

The list of entity indices.

Remarks
 
The sensitivity is affected by the PickBoxSize parameter. Only the entities that are visible on screen and in the selectionBox are considered, the ones covered by other entities are not considered.

.NET Framework

Supported in: 4.8

In this article

Definition