Movicon Help on Line - Rel. 11.7.1301
|
Syntax |
GetAliasListValue() |
|
Description |
This function returns the list of values associated to the Aliases defined in the screen. A string will be returned where the values 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 Value List = " & objScreen.GetAliasListValue(),vbInformation, GetProjectTitle
Set objScreen = Nothing
End Sub