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

FIL.GetMinimumPath_OrNil

Returns the path from the input array that corresponds to the smallest computed feature value; returns NIL if the array or any path inside it is empty.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void GetMinimumPath_OrNil
(
	IList<FilNet.Path> inPaths,
	FilNet.PathFeature inFeature,
	INullable<FilNet.Path> outPath,
	out float? outValue,
	out int? outIndex
)

Parameters

Name Type Range Default Description
inPathsSystem.Collections.Generic.IList<FilNet.Path>Input paths.
inFeatureFilNet.PathFeaturePath feature value to be computed.
outPathFilNet.INullable<FilNet.Path>Output path. This parameter cannot be null.
outValuefloat?Computed feature value of the output path.
outIndexint?

See also