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

FIL.MakeRegionConditional

Computes a region feature, checks whether its value is in range and creates a conditional region on this basis.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void MakeRegionConditional
(
	FilNet.Region inRegion,
	FilNet.RegionFeature inFeature,
	float? inMinimum,
	float? inMaximum,
	INullable<FilNet.Region> outConditionalRegion
)

Parameters

Name Type Range Default Description
inRegionFilNet.RegionInput region.
inFeatureFilNet.RegionFeatureRegion feature value to be computed.
inMinimumfloat?Lowest value of the range. Default value: ftl::NIL.
inMaximumfloat?Highest value of the range. Default value: ftl::NIL.
outConditionalRegionFilNet.INullable<FilNet.Region>The region if the condition is met or nothing otherwise. This parameter cannot be null.

See also