[]
Returns the IRange object that represents the cells in the specified range.
IRange Cells { get; }
ReadOnly Property Cells As IRange
IRange range = worksheet.Range["B2:C3"];
IRange cells = range.Cells;
int cellCount = cells.Count;