Class RowColumnRange
Represents a base for the row and column range classes.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class RowColumnRange
Constructors
RowColumnRange(Int32)
Initializes a new instance of the RowColumnRange class.
Declaration
protected RowColumnRange(int index)
Parameters
System.Int32
index
The index of the range. |
RowColumnRange(Int32, Int32)
/// Initializes a new instance of the RowColumnRange class.
Declaration
protected RowColumnRange(int from, int to)
Parameters
System.Int32
from
The start index of the range. |
System.Int32
to
The end index of the range. |
Properties
FromIndex
The start of the range.
Declaration
public int FromIndex { get; }
Property Value
System.Int32
|
ToIndex
The end of the range.
Declaration
public int ToIndex { get; }
Property Value
System.Int32
|
Methods
Equals(Object)
Determines whether the specified System.Object is equal to the current System.Object.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The System.Object to compare with the current System.Object. |
Returns
System.Boolean
True if the specified System.Object is equal to the current System.Object; otherwise, false. |
Overrides
GetHashCode()
Serves as a hash function for a particular type.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for the current System.Object. |