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

FIL.SortPaths

Changes the order of paths from the input array according to an ascending/descending sequence of their computed feature values.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void SortPaths
(
	IList<FilNet.Path> inPaths,
	FilNet.PathFilter inPathFilter,
	FilNet.PathFeature inFeature,
	FilNet.SortingOrder inSortingOrder,
	IList<FilNet.Path> outSortedPaths,
	NullableRef<List<float>> outSortedValues
)

Parameters

Name Type Range Default Description
inPathsSystem.Collections.Generic.IList<FilNet.Path>Input paths.
inPathFilterFilNet.PathFilterDetermines which paths will take part in computation.
inFeatureFilNet.PathFeaturePath feature value to be computed.
inSortingOrderFilNet.SortingOrderSorting order.
outSortedPathsSystem.Collections.Generic.IList<FilNet.Path>Paths sorted according to the computed feature values.
outSortedValuesFilNet.NullableRef<System.Collections.Generic.List<float>>Computed feature values. Can be null to skip this parameter calculation.

Function Overrides

See also