GetCoordinates (Method)
Â
Â
IWindow::GetCoordinates
Retrieve the window coordinates for a session.
Â
Function GetCoordinates(Session As String, coord As WindowCoordinates) As Long
 Parameters
No | Name | Type | Optional | Default | Description |
---|---|---|---|---|---|
1 | Session | String | No | - | One character session ID |
2 | coord | No | - | Structure to receive the window coordinates | |
Return Code | Description | ||||
JGS_OK | The function was successful | ||||
JGS_PARAMETERERROR | Missing or invalid parameter | ||||
JGS_MEMORY | Insufficient memory | ||||
JGS_NOTCONNECTED | Your application is not currently connected to a valid session | ||||
JGS_PSENDED | The session was stopped | ||||
JGS_UNAVAILABLE | The session is in use by another application | ||||
JGS_SYSERROR | The function failed due to a system error |
Sample Code
Â
Dim mySession as String
Dim result as Long
Dim coords as WindowCoordinates
mySession = "E"
result = win.GetCoordinates(mySession, coords)
 Dim result as Long
Dim coords as WindowCoordinates
mySession = "E"
result = win.GetCoordinates(mySession, coords)
Â