FZ_FormBase.GetUnitCount

Gets the number of the registered processing units

Public Function GetUnitCount( _
) As Integer

Parameters
None.

Return Value
Returns the number of processing units registered with the current scene.

Description
Gets the number of processing units registered with the current scene.

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

       Dim unitCount As Integer

       ' Gets the number of the registered units
       unitCount = GetUnitCount()

  End Sub