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:
C#
public class RangePropertyValue<T>
Inheritance: objectRangePropertyValue<T>
Methods
Compares the value and indeterminate flag, returning true if both match the specified object.
Properties
Gets whether the property has different values across the range (true if mixed, false if uniform).
C#
public bool IsIndeterminate { get; }
The value indicating whether the property value is indeterminate.
Gets the property value when IsIndeterminate is false, or a default/representative value when true.
C#
public T Value { get; }
The value.