CalibrationDate Property (Read Only)
Syntax
CWIMAQ.CalibrationDate
Data Type
Purpose
Calibration date of the image acquisition device.
Remarks
This value is valid only when the IsCalibrated property is True.
Example
Private Sub Run_Click()
Dim calibrationDate As Date
If CWIMAQ1.IsCalibrated Then
calibrationDate = CWIMAQ1.calibrationDate
Text1 = calibrationDate
Else
Text1 = "Not Calibrated"
End If
End Sub