Beispiel #1
0
 public int GetRealRowHeight(int row)
 {
     return(_rowSizes.GetSizeByRealIndex(row));
 }
Beispiel #2
0
 private IntRect GetCellRect(int row, int column)
 {
     return(new IntRect(new IntPoint(GetColumnLeft(column), GetRowTop(row)), new IntSize(_columnSizes.GetSizeByRealIndex(column) + 1, _rowSizes.GetSizeByRealIndex(row) + 1)));
 }