FZ_FormBase.ImageLogging
Executes image logging
Public Shared Function ImageLogging( _
ByVal fileName As String _
) As Integer
Parameters
Return Value
Returns 0 when image logging is successfully executed.
Otherwise returns a non-zero value.
Description
Saves the last measuring input image in form of IFZ file in the specified file.
When an effective measurement is not done, the meaningful image is not preserved state that the image input is done excluding the measurement processing as follows.
This is a specification.
- Executes this processing when the measurement never executed after the start.
- Executes this processing when the measurement never executed after the scene/scene group switch.
- Executes this processing when the measurement never executed after input image in the setting menu.
- Executes this processing when the measurement never executed after remeasure IFZ/BYR file the start.
- Executes this processing in through display state.
...
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
' Executes image logging
ImageLogging()
End Sub