Class
ColumnRange

Defines a contiguous range of columns by start and end indices within a worksheet.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Model

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

cs-api-definition
public class ColumnRange : RowColumnRange

Inheritance: objectRowColumnRangeColumnRange

Inherited Members RowColumnRange.GetHashCode()RowColumnRange.Equals(object)RowColumnRange.FromIndexRowColumnRange.ToIndex

Constructors

ColumnRange(int)

Initializes a new ColumnRange representing a single column at the specified index.

Declaration

cs-api-definition
public ColumnRange(int index)

Parameters

index

int

The index of the range.

ColumnRange(int, int)

Initializes a new ColumnRange spanning from the start to the end column index.

Declaration

cs-api-definition
public ColumnRange(int from, int to)

Parameters

from

int

The start index of the range.

to

int

The end index of the range.