FZ_PanDAForm.SetSceneDescription
Sets a scene description
Public Shared Function SetSceneDescription( _
ByVal sceneNo As Integer, _
ByVal sceneDescription As String _
) As Integer
Parameters
sceneNo
|
Scene number to be be set
|
Input
|
sceneDescription
|
Scene description string to set
|
Input
|
Return Value
Returns 0 when setting a scene description succeeded.
Otherwise returns a non-zero value.
Description
Sets the specified scene description to the specified scene number.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
' Sets the scene description to the scene number 0
SetSceneDescription(0, "This scene is used for...")
End Sub