FZ_PanDAForm.GetSceneDescription

Gets a scene description

Public Shared Function GetSceneDescription( _
   ByVal sceneNo As Integer _
) As String

Parameters
sceneNo
Scene number for which the scene description is obtained
Input

Return Value
Returns a string that stores the scene description.
Returns an empty string if the scene description is not set.

Description
Gets the scene description for the specified scene number.

Example
   Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

       Dim sceneDescription As String

       ' Gets the scene description of the scene number 0
       sceneDescription = GetSceneDescription(0)

  End Sub