Movicon Help on Line - Rel. 11.7.1301
|
Syntax |
GetAlias(_lpszAlias) |
|
Description |
This function returns the value defined for the Alias passes as "lpszAlias" parameter defined in the screen's Alias Table. |
|
Parameter |
Description |
|
lpszAlias As String |
Name of Alias where value is to be retrieved. |
|
Result |
String |
Example:
Public Sub Click()
Dim objScreen As SynopticCmdTarget
Set objScreen = GetSynopticObject
MsgBox "Alias <<TsetAlais>> = " objScreen.GetAlias("TsetAlais"),vbInformation, GetProjectTitle
Set objScreen = Nothing
End Sub