InfoConnect for Airlines
EndPosition Property (HostField)
Example 


Gets the column and row coordinates of the end position.
Syntax
'Declaration
 
Public ReadOnly Property EndPosition As ScreenPoint
'Usage
 
Dim instance As HostField
Dim value As ScreenPoint
 
value = instance.EndPosition
public ScreenPoint EndPosition {get;}
Example
HostField host;
ScreenPoint point;
            
//Get the screen position (row , column)
point = host.EndPosition;
            
int row = point.Row;//Get the row location.
int column = point.Column;//Get the column location.
See Also