Description Returns the minimum and maximum wavelengths for the spectrum being queried.
Syntax SpectrumGetRange spectNode, minWav, maxWav
Parameters spectNode As Long Node number of the spectrum being queried
minWav As Double Minimum wavelength of the spectrum being queried.
maxWav As Double Maximum wavelength of the spectrum being queried.
Example The following example gets the wavelength range for a spectrum and prints the results to the output window.
Dim minWav As Double Dim maxWav As Double
SpectrumGetRange spectNode, minWav, maxWav Print "Spectrum defined on the range " & minWav & " to " & maxWav & " microns."
See Also SpectrumComputeLuminousEfficacy
|