Gets records intersecting a given rectangle

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Sub GetShapeIndiciesIntersectingRect ( _
	indicies As List(Of Integer), _
	rect As RectangleD, _
	sourceCRS As ICRS _
)
C#
public void GetShapeIndiciesIntersectingRect(
	List<int> indicies,
	RectangleD rect,
	ICRS sourceCRS
)
Visual C++
public:
void GetShapeIndiciesIntersectingRect(
	List<int>^ indicies, 
	RectangleD rect, 
	ICRS^ sourceCRS
)
JavaScript
function getShapeIndiciesIntersectingRect(indicies, rect, sourceCRS);

Parameters

indicies
Type: System.Collections.Generic..::..List<(Of <(<'Int32>)>)>
rect
Type: EGIS.ShapeFileLib..::..RectangleD
rectangular extent in source CRS coordinates if sourcCRS not null else in the shapefile coordinates
sourceCRS
Type: EGIS.Projections..::..ICRS

Remarks

For backward compatibility sourceCRS is null by default

See Also