FZ_PanDAForm.GetSceneGroupTitle

Gets the scene group title name

Public Shared Function GetSceneGroupTitle( _
   ByVal sceneGroupNo As Integer _
) As String

Parameters
sceneGroupNo
Scene group number of which the title is obtained
Input

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

Description
Gets the specified scene group title.

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

       Dim title As String

       ' Gets a title name for the scene group number 3
       title = GetSceneGroupTitle(3)

  End Sub