DXFReaderNETControlGetEntities Method
|
Returns a list of entity objects contained in a rectangle.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public List<EntityObject> GetEntities(
Vector2 StartPoint,
Vector2 EndPoint
)
Public Function GetEntities (
StartPoint As Vector2,
EndPoint As Vector2
) As List(Of EntityObject)
public:
List<EntityObject^>^ GetEntities(
Vector2 StartPoint,
Vector2 EndPoint
)
member GetEntities :
StartPoint : Vector2 *
EndPoint : Vector2 -> List<EntityObject>
METHOD GetEntities(
StartPoint AS Vector2,
EndPoint AS Vector2
) AS List<EntityObject>
Parameters
- StartPoint
- Type: DXFReaderNETVector2
The start point of the rectangle. - EndPoint
- Type: DXFReaderNETVector2
The end point of the rectangle.
Return Value
Type:
ListEntityObjectA list of entity objects contained in the rectangle.
See Also