SoVolumeReaderGetMinMax Method (Int64, Int64) |
Returns min and max for integer data type, if available.
Namespace: OIV.LDM.ReadersAssembly: OIV.LDM (in OIV.LDM.dll) Version: 2024.2.2.0 (10.16.2.0)
Syntax public virtual bool GetMinMax(
out long min,
out long max
)
Public Overridable Function GetMinMax (
<OutAttribute> ByRef min As Long,
<OutAttribute> ByRef max As Long
) As Boolean
public:
virtual bool GetMinMax(
[OutAttribute] long long% min,
[OutAttribute] long long% max
)
abstract GetMinMax :
min : int64 byref *
max : int64 byref -> bool
override GetMinMax :
min : int64 byref *
max : int64 byref -> bool
Parameters
- min
- Type: SystemInt64
- max
- Type: SystemInt64
Return Value
Type:
BooleanRemarks If not available, return false. The reader should implement this method if possible, because applications often query these values to setup their OIV.LDM.Nodes.SoDataRange node. If this method is not implemented, and the application calls OIV.VolumeViz.Nodes.SoVolumeData.GetMinMax(System.Int64@, System.Int64@) is called, then VolumeViz must load every tile to compute the volume min and max. This can cause a long delay.
See Also