You are here: Start » FIL.NET » Function Reference » Path » Path Classification » FIL.MakePathConditional

FIL.MakePathConditional

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void MakePathConditional
(
	FilNet.Path inPath,
	FilNet.PathFeature inFeature,
	float? inMinimum,
	float? inMaximum,
	INullable<FilNet.Path> outConditionalPath
)

Parameters

Name Type Range Default Description
inPathFilNet.PathInput path.
inFeatureFilNet.PathFeaturePath 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.
outConditionalPathFilNet.INullable<FilNet.Path>The path if the condition is met or nothing otherwise. This parameter cannot be null.

See also