[]
Returns a new instance of IRange which represents the same range of cells, but expanded to include all columns.
IRange EntireRow { get; }
ReadOnly Property EntireRow As IRange
IRange range = worksheet.Range["B2:C3"];
IRange entireRow = range.EntireRow;
int columnCount = entireRow.ColumnCount;