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

Invoke.GetHistogramBin

Returns the value of a single histogram bin.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void GetHistogramBin
(
	Fil.Histogram inHistogram,
	int inIndex,
	bool inCyclic,
	bool inInverse,
	out double outValue,
	Optional<float> outBinStart,
	Optional<float> outBinEnd
)

Parameters

Name Type Range Default Description
inHistogramFil.HistogramInput histogram.
inIndexintInput bin index.
inCyclicboolFalseWhether to wrap the index around or not. Default value: False.
inInverseboolReversed order of bins.
outValuedoubleOutput value of the bin.
outBinStartFtl.Optional<float>Lower limit of the bin.
outBinEndFtl.Optional<float>Upper limit of the bin.

See also