InfoConnect for Airlines
Column Property (ScreenPoint)
Example 


Gets the column of this screen coordinate.
Syntax
'Declaration
 
Public ReadOnly Property Column As Integer
'Usage
 
Dim instance As ScreenPoint
Dim value As Integer
 
value = instance.Column
public int Column {get;}
Example
private ScreenPoint screenPoint;
//Get the screen coordinate column.
int column = screenPoint.Column;
See Also