You are here: Start » FIL.NET » Invoke.ProfileSections

Invoke.ProfileSections

Finds subprofiles whose values fall into the specified range.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ProfileSections
(
	Fil.Profile inProfile,
	Optional<Fil.Range> inRange,
	Optional<float> inMinValue,
	Optional<float> inMaxValue,
	float inMinSectionWidth,
	Optional<float> inMaxSectionWidth,
	float inMinGapWidth,
	Optional<float> inMaxGapWidth,
	Optional<float> inMaxInnerGapWidth,
	List<Fil.ProfileSection> outSections,
	Conditional<Fil.ProfileSection> outBoundingSection
)

Parameters

Name Type Range Default Description
inProfileFil.ProfileInput profile.
inRangeFtl.Optional<Fil.Range>
inMinValueFtl.Optional<float>5.0fLower bound for profile values. Default value: 5.0f.
inMaxValueFtl.Optional<float>Upper bound for profile values. Default value: ftl::NIL.
inMinSectionWidthfloat<0.0f, INF>0.0fMinimal width of the found section. Default value: 0.0f.
inMaxSectionWidthFtl.Optional<float><0.0f, INF>Maximal width of the found section. Default value: ftl::NIL.
inMinGapWidthfloat<0.0f, INF>0.0fMinimal distance between consecutive sections. Default value: 0.0f.
inMaxGapWidthFtl.Optional<float><0.0f, INF>Maximal distance between consecutive sections. Default value: ftl::NIL.
inMaxInnerGapWidthFtl.Optional<float><0.0f, INF>0.0fMaximal possible gap width between two sections to join them into one. Default value: 0.0f.
outSectionsSystem.Collections.Generic.List<Fil.ProfileSection>Output profile sections.
outBoundingSectionFtl.Conditional<Fil.ProfileSection>The smallest section that contains all outSections.

See also