FZ_PanDAForm.GetSceneCount
Gets the number of scenes
Public Shared Function GetSceneCount( _
) As Integer
Parameters
None.
Return Value
Returns the number of scenes.
Description
Gets the number of scenes in the current scene group.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Dim sceneCnt As Integer
' Gets the number of scenes
sceneCnt = GetSceneCount()
End Sub