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

Invoke.GroupPathsByRegions

For each region returns which paths lie inside of it or intersect with it.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void GroupPathsByRegions
(
	List<Fil.Path> inPaths,
	List<Fil.Region> inRegions,
	Fil.MatchingCriterion inMatchingCriterion,
	List<List<int>> outGroupedIndices,
	Optional<List<List<Fil.Path>>> outGroupedPaths
)

Parameters

Name Type Range Default Description
inPathsSystem.Collections.Generic.List<Fil.Path>Array of paths that will be classified into multiple groups.
inRegionsSystem.Collections.Generic.List<Fil.Region>Array of regions that define the groups.
inMatchingCriterionFil.MatchingCriterionSpecifies whether a path must fully belong to a group region or if it is enough that it intersects.
outGroupedIndicesSystem.Collections.Generic.List<System.Collections.Generic.List<int>>Indices of input paths classified into multiple groups.
outGroupedPathsFtl.Optional<System.Collections.Generic.List<System.Collections.Generic.List<Fil.Path>>>Input paths classified into multiple groups.

See also