Example #1
0
 private IFastGridCell GetModelCell(int row, int col)
 {
     if (_model == null)
     {
         return(null);
     }
     if (row < 0 || row >= _modelRowCount)
     {
         return(null);
     }
     if (col < 0 || col >= _modelColumnCount)
     {
         return(null);
     }
     return(_model.GetCell(this, row, col));
 }