You are here: Start » FIL.NET » Invoke.TestPointArrayInPolygon

Invoke.TestPointArrayInPolygon

Tests which points lie inside a polygon.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void TestPointArrayInPolygon
(
	List<Fil.Point2D> inPoints,
	Fil.Path inPolygon,
	List<bool> outIsContainedArray,
	List<Fil.Point2D> outPoints,
	Optional<bool> outAreAllContained
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Fil.Point2D>Points which will be tested.
inPolygonFil.PathPolygon against which the points will be tested.
outIsContainedArraySystem.Collections.Generic.List<bool>
outPointsSystem.Collections.Generic.List<Fil.Point2D>Points that are contained.
outAreAllContainedFtl.Optional<bool>

See also