  | CSTGetHistogramInfo Method  | 
 Retrieve number of bins, min and max value in histogram
 
    Namespace: 
   GeoEngine.Core.GXNetX
    Assembly:
   geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic void GetHistogramInfo(
	ref int div,
	ref double min,
	ref double max
)
public void GetHistogramInfo(
	ref int div,
	ref double min,
	ref double max
)
Public Sub GetHistogramInfo ( 
	ByRef div As Integer,
	ByRef min As Double,
	ByRef max As Double
)
Public Sub GetHistogramInfo ( 
	ByRef div As Integer,
	ByRef min As Double,
	ByRef max As Double
)
public:
void GetHistogramInfo(
	int% div, 
	double% min, 
	double% max
)
public:
void GetHistogramInfo(
	int% div, 
	double% min, 
	double% max
)
member GetHistogramInfo : 
        div : int byref * 
        min : float byref * 
        max : float byref -> unit 
member GetHistogramInfo : 
        div : int byref * 
        min : float byref * 
        max : float byref -> unit 
Parameters
- div
 - Type: SystemInt32
# of bins - min
 - Type: SystemDouble
Min (value at start of 2nd bin) - max
 - Type: SystemDouble
Max (value at end of 2nd last bin) 
Remarks
The items correspond to those in Histogram2_ST.
If a histogram is not defined in
the ST, then the returned number of bins is zero, and
the min and max values will be dummies.
See Also