'DeclarationPublic ReadOnly Property Row As Integer
'UsageDim instance As ScreenPoint Dim value As Integer value = instance.Row
public int Row {get;}
Gets the row of this screen coordinate.'DeclarationPublic ReadOnly Property Row As Integer
'UsageDim instance As ScreenPoint Dim value As Integer value = instance.Row
public int Row {get;}
private ScreenPoint screenPoint; //Get the screen coordinate row. int row = screenPoint.Row;