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