FZ_FormBase.GetUnitItemIdent
Gets a processing item identification name registered for the processing unit
Public Function GetUnitItemIdent( _
ByVal unitNo As Integer _
) As String
Public Function GetUnitItemIdent( _
ByVal sceneNo As Integer, _
ByVal unitNo As Integer _
) As String
Parameters
unitNo
|
Unit number of the processing item identification name to be gotten
|
Input
|
sceneNo
|
Scene number of title name to be gotten
|
Input
|
Return Value
Returns the processing item identification name.
Returns nothing if no registration exists for the specified unit number.
Description
Gets the processing item identification name registered with the specified unit number.
Example
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim procName As String
' Gets a processing item identification name registered for the unit No.0
procName = GetUnitItemIdent(0)
' Gets a processing item identification name registered for the unit No.0 and scene No.0
procName = GetUnitItemIdent(0, 0)
End Sub