[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Columns

Columns Property

Columns

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

Declaration
IRange Columns { get; }
ReadOnly Property Columns As IRange
Examples
IRange range = worksheet.Range["B2:C3"];
IRange columns = range.Columns;
int columnCount = columns.Count;