FZ_PanDAForm.GetSceneTitle

Gets a scene title name

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

Parameters
sceneNo
Scene number for which the title is obtained
Input

Return Value
Returns the title name of the scene.
Returns the default string if the title name has not been set for the scene .
Returns Nothing if the scene title name cannot be obtained.

Description
Gets the specified scene title.

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

       Dim title As String

       ' Gets the scene number 3 title name
       title = GetSceneTitle(3)

  End Sub