You are here: Start » FIL.NET » Function Reference » Profile » Profile Features » FIL.ProfileSections

FIL.ProfileSections

Finds subprofiles whose values fall into the specified range.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void ProfileSections
(
	FilNet.Profile inProfile,
	float? inMinValue,
	float? inMaxValue,
	float inMinSectionWidth,
	float inMinGapWidth,
	IList<FilNet.ProfileSection> outSections,
	out FilNet.ProfileSection? outBoundingSection
)

Parameters

Name Type Range Default Description
inProfileFilNet.ProfileInput profile.
inMinValuefloat?5.0fLower bound for profile values. Default value: 5.0f.
inMaxValuefloat?Upper bound for profile values. Default value: ftl::NIL.
inMinSectionWidthfloat<0.0f, INF>0.0fMinimal width of the found section. Default value: 0.0f.
inMinGapWidthfloat<0.0f, INF>0.0fMinimal distance between consecutive sections. Default value: 0.0f.
outSectionsSystem.Collections.Generic.IList<FilNet.ProfileSection>Output profile sections.
outBoundingSectionFilNet.ProfileSection?The smallest section that contains all outSections.

Errors

List of possible exceptions:

Error type Description
DomainError Range exceeds the input profile in ProfileSections.

Function Overrides

See also