ItemType
Find the syntax, use, parameters, return values, and an example for the ItemType macro command in Connexion client.
Syntax | nType = CS.ItemType |
---|---|
Use to | Return the window type of the current (top-most) window. |
Parameters | None |
Return values | Returns an integer that indicates the type of the current window. The numbers indicate the following window type:
|
Example | Sub Main()
Dim CS as Object If CS.Logon ““, ““ ““ = True Then MsgBox “Online authority save file list” If CS.GetFirstItem() = True Then If CS.ItemType = 4 Then MsgBox “Online authority save file record” End If End If End If End If End Sub |
What this example does |
|