InfoConnect for Airlines VBA Guide
EndPosition Property (HostField)
Specifies the column and row coordinates of the end position.
Syntax
Object.EndPosition As _ScreenPoint
Example
Dim host As HostField 
Dim point As _ScreenPoint
 
'Get the screen position (row , column)
point = host.EndPosition
 
'Get the row location.
Dim row As Long = point.Row
'Get the column location.
Dim column As Long column = point.Column
See Also