You are here: Start » FIL.NET » Function Reference » Region » Region Relations » FIL.GroupRegionsByRegions

FIL.GroupRegionsByRegions

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void GroupRegionsByRegions
(
	IList<FilNet.Region> inRegions,
	IList<FilNet.Region> inGroupRegions,
	FilNet.MatchingCriterion inMatchingCriterion,
	IList<List<int>> outGroupedIndices,
	NullableRef<SafeList<SafeList<FilNet.Region>>> outGroupedRegions
)

Parameters

Name Type Range Default Description
inRegionsSystem.Collections.Generic.IList<FilNet.Region>Array of regions that will be classified into multiple groups.
inGroupRegionsSystem.Collections.Generic.IList<FilNet.Region>Array of regions that define the groups.
inMatchingCriterionFilNet.MatchingCriterionSpecifies whether a region must fully belong to a group region or if it is enough that it intersects.
outGroupedIndicesSystem.Collections.Generic.IList<System.Collections.Generic.List<int>>Indices of input regions classified into multiple groups.
outGroupedRegionsFilNet.NullableRef<FilNet.SafeList<FilNet.SafeList<FilNet.Region>>>Input regions classified into multiple groups. Can be null to skip this parameter calculation.

Function Overrides

See also