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: 2024.2.2.0 (10.16.2.0)
Syntax public 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:
BooleanRemarks This 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