FZ_PanDAForm.GetSceneMaker
Gets a scene author name
Public Shared Function GetSceneMaker( _
ByVal sceneNo As Integer _
) As String
Parameters
sceneNo
|
Scene number for which the scene author name is obtained
|
Input
|
Return Value
Returns a string that stores the scene author name.
Returns an empty string if the scene author name is not set.
Description
Gets the scene author name of the specified scene number.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Dim sceneMaker As String
' Gets the scene author name of the scene number 0
sceneMaker = GetSceneMaker(0)
End Sub