SurfaceLineExportSpectrum
Last update: 17.07.2025Description
Exports the spectrum data of a measurement line to a spectrum file. Returns TRUE if the call has succeeded, FALSE otherwise.
Syntax
object.SurfaceLineExportSpectrum(double dXPos1, double dYPos1, double dXPos2, double dYPos2, BSTR bstrFileName)as Boolean- object: Virtual Photometric Lab
- dXPos1: horizontal coordinate of the first vertex of the line
- dYPos1: vertical coordinate of the first vertex of the line
- dXPos2: horizontal coordinate of the second vertex of the line
- dYPos2: vertical coordinate of the second vertex of the line
- bstrFileName: path and filename of the spectrum (.spectrum, .spe) file
VB script example
' Creates XMPViewer COM server
set XmpViewer = CreateObject("XmpViewer.application")
' Opens XMP file
XMPViewer.OpenFile("C:\Example.xmp")
' Exports spectrum into SPE file
XMPViewer.SurfaceLineExportSpectrum(-0.25, 0, 0.25, 0, "C:\Example.spe")
IronPython example
from System import Type, Activator
#Creates XMPViewer COM server
type = Type.GetTypeFromProgID("XmpViewer.Application")
XmpViewer = Activator.CreateInstance(type)
# Opens XMP file
XmpViewer.OpenFile("C:\\Example.xmp")
# Exports spectrum
XMPViewer.SurfaceLineExportSpectrum (-0.25, 0, 0.25, 0, "C:\\Example.spe")