XPTable.Models.Table.RowIndexToClient C# (CSharp) Method

RowIndexToClient() private method

Returns the y-coord of the top of the given row, in client coordinates.
private RowIndexToClient ( int row ) : int
row int
return int
        private int RowIndexToClient(int row)
        {
            int y = RowYDifference(this.TopIndex, row);
            return y;
        }
Table