[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Cells

Cells Property

Cells

Returns the IRange object that represents the cells in the specified range.

Declaration
IRange Cells { get; }
ReadOnly Property Cells As IRange
Examples
IRange range = worksheet.Range["B2:C3"];
IRange cells = range.Cells;
int cellCount = cells.Count;