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

Syntax

Visual Basic
Public Shared Function PointInPolygon ( _
	data As Byte(), _
	offset As Integer, _
	numPoints As Integer, _
	x As Double, _
	y As Double _
) As Boolean
C#
public static bool PointInPolygon(
	byte[] data,
	int offset,
	int numPoints,
	double x,
	double y
)
Visual C++
public:
static bool PointInPolygon(
	array<unsigned char>^ data, 
	int offset, 
	int numPoints, 
	double x, 
	double y
)
JavaScript
EGIS.ShapeFileLib.GeometryAlgorithms.pointInPolygon = function(data, offset, numPoints, x, y);

Parameters

data
Type: array<System..::..Byte>[]()[][]
offset
Type: System..::..Int32
numPoints
Type: System..::..Int32
x
Type: System..::..Double
y
Type: System..::..Double

See Also