ClassRangePropertyValue<T>
Property value queried from a cell range, indicating whether the value is uniform or mixed (indeterminate) across the range.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Type Parameters:
T
The type of the property value.
Syntax:
public class RangePropertyValue<T>
Inheritance: objectRangePropertyValue<T>
Properties
IsIndeterminate
Gets whether the property has different values across the range (true if mixed, false if uniform).
Declaration
public bool IsIndeterminate { get; }
Property Value
The value indicating whether the property value is indeterminate.
Value
Gets the property value when IsIndeterminate is false, or a default/representative value when true.
Declaration
public T Value { get; }
Property Value
T
The value.
Methods
Equals(object)
Compares the value and indeterminate flag, returning true if both match the specified object.
GetHashCode()
Computes a hash code from the value and indeterminate flag.