Movicon Help on Line - Rel. 11.7.1301
Syntax |
GetAliasListName() |
Description |
This function returns the list of Aliases defined in the screen. This function returns the list of Aliases defined in the screen. A string will be returned where the names of the Aliases are separated by the "|" (pipe) character. |
Parameter |
Description |
None |
None |
Result |
String |
Example:
Public Sub Click()
Dim objScreen As SynopticCmdTarget
Set objScreen = GetSynopticObject
MsgBox "Alias List = " & objScreen.GetAliasListName(),vbInformation, GetProjectTitle
Set objScreen = Nothing
End Sub