Class ColumnRange
Defines a contiguous range of columns by start and end indices within a worksheet.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ColumnRange : RowColumnRange
Constructors
ColumnRange(Int32)
Initializes a new ColumnRange representing a single column at the specified index.
Declaration
public ColumnRange(int index)
Parameters
|
System.Int32
index
The index of the range. |
ColumnRange(Int32, Int32)
Initializes a new ColumnRange spanning from the start to the end column index.
Declaration
public ColumnRange(int from, int to)
Parameters
|
System.Int32
from
The start index of the range. |
|
System.Int32
to
The end index of the range. |