SelectionRange<T>
Struct
Simple structure representing a simple Generic range.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.dll
Type Parameters:
T
Syntax:
C#
public struct SelectionRange<T>
Inherited Members
Constructors
Initializes a new instance of the SelectionRange<T> struct.
C#
public SelectionRange(T start, T end)
The start.
endTThe end.
Properties
End
T
Gets or sets the End property.
C#
public T End { readonly get; set; }
Gets or sets the Start property.
C#
public T Start { readonly get; set; }
Methods
Returns a hash code for this instance.
C#
public override int GetHashCode()
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides:
Operators
Implements the operator !=.
C#
public static bool operator !=(SelectionRange<T> range1, SelectionRange<T> range2)
The range1.
range2SelectionRange<T>The range2.
Returns:The result of the operator.
Implements the operator ==.
C#
public static bool operator ==(SelectionRange<T> range1, SelectionRange<T> range2)
The range1.
range2SelectionRange<T>The range2.
Returns:The result of the operator.