XPTable.Models.Table.RowIndexToClient C# (CSharp) 메소드

RowIndexToClient() 개인적인 메소드

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