| SoCpuBufferBasicPropertyGetMinMax Method  | 
Get the min and max values in the buffer, if they are known. 
 
Namespace: OIV.LDM.TilesAssembly: OIV.LDM (in OIV.LDM.dll) Version: 2025.2.0.0 (10.18.0.0)
Syntaxpublic virtual bool GetMinMax(
	out double min,
	out double max
)
Public Overridable Function GetMinMax ( 
	<OutAttribute> ByRef min As Double,
	<OutAttribute> ByRef max As Double
) As Boolean
public:
virtual bool GetMinMax(
	[OutAttribute] double% min, 
	[OutAttribute] double% max
)
abstract GetMinMax : 
        min : float byref * 
        max : float byref -> bool 
override GetMinMax : 
        min : float byref * 
        max : float byref -> bool Parameters
- min
 - Type: SystemDouble
user variable to store min value 
 - max
 - Type: SystemDouble
user variable to store max value 
 
Return Value
Type: 
Boolean
Remarks
Returns false if these values have not been set or computed. Returns true if values are available.
See Also