Gets
the column and row coordinates of this field.
'Declaration
Public ReadOnly Property StartPosition As ScreenPoint
'Usage
Dim instance As HostField
Dim value As ScreenPoint
value = instance.StartPosition
HostField host;
ScreenPoint point;
//Get the screen position (row , column)
point = host.StartPosition;
int row = point.Row;//Get the row location.
int column = point.Column;//Get the column location.