FZ_PanDAForm.SetSceneTitle
Sets a scene title name
Public Shared Function SetSceneTitle( _
ByVal sceneNo As Integer, _
ByVal sceneTitle As String _
) As Integer
Parameters
sceneNo
|
Scene number to which the title is set
|
Input
|
sceneTitle
|
String to be set
|
Input
|
Return Value
Returns 0 when setting the scene title succeeded.
Otherwise returns a non-zero value.
Description
Sets the specified scene title.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
' Sets a title name of the scene number 3
SetSceneTitle(3, "IC Chip Left Part Position Inspection")
End Sub