| SoVolumeReaderSetInputDataRange Method  | 
Requests that the input be converted from the specified range to the range depending on the output data type. 
 
Namespace: OIV.LDM.ReadersAssembly: OIV.LDM (in OIV.LDM.dll) Version: 2025.2.0.0 (10.18.0.0)
Syntaxpublic virtual bool SetInputDataRange(
	bool doChange,
	double min,
	double max
)
Public Overridable Function SetInputDataRange ( 
	doChange As Boolean,
	min As Double,
	max As Double
) As Boolean
public:
virtual bool SetInputDataRange(
	bool doChange, 
	double min, 
	double max
)
abstract SetInputDataRange : 
        doChange : bool * 
        min : float * 
        max : float -> bool 
override SetInputDataRange : 
        doChange : bool * 
        min : float * 
        max : float -> bool Parameters
- doChange
 - Type: SystemBoolean
 - min
 - Type: SystemDouble
 - max
 - Type: SystemDouble
 
Return Value
Type: 
Boolean
RemarksThis allows, for instance, if the output data type is unsigned byte, conversion of float data from range [min,max] to range [0,255]. If doChange is false no range conversion is applied. Always returns true. 
See Also