FZ_PanDAForm.SetTimeWindow
Sets a measurement time display window
Public Shared Function SetTimeWindow( _
ByVal handle As IntPtr _
ByVal locationX As Integer _
ByVal locationY As Integer _
ByVal fontSize As Integer _
) As Integer
Parameters
handle
|
Handle
|
Input
|
locationX
|
Upper left X coordinate of the window
|
Input
|
locationY
|
Upper left Y coordinate of the window
|
Input
|
fontSize
|
Font size
|
Input
|
Return Value
Returns 0 when the measurement time display window is successfully set.
Otherwise returns a non-zero value.
Description
Sets the measurement time display window.
Example
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim mainWindow As ImageWindowM
' Sets the measurement time display window
SetTimeWindow(mainWindow.Handle, 46, 54, 12)
End Sub