You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Relations » FIL.TestPointArrayInRectangle

FIL.TestPointArrayInRectangle

Tests which points lie inside a rectangle.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void TestPointArrayInRectangle
(
	IList<FilNet.Point2D> inPoints,
	FilNet.Rectangle2D inRectangle,
	IList<bool> outIsContainedArray,
	NullableRef<List<FilNet.Point2D>> outPoints,
	NullableValue<bool> outAreAllContained
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<FilNet.Point2D>Points which will be tested.
inRectangleFilNet.Rectangle2D
outIsContainedArraySystem.Collections.Generic.IList<bool>
outPointsFilNet.NullableRef<System.Collections.Generic.List<FilNet.Point2D>>Points that are contained. Can be null to skip this parameter calculation.
outAreAllContainedFilNet.NullableValue<bool> Can be null to skip this parameter calculation.

Function Overrides

See also