New to Telerik Document ProcessingStart a free 30-day trial

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.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with the current object.

Returns:

bool

True if the specified object is equal to the current object; otherwise, false.

Overrides: object.Equals(object)

Computes a hash code from the value and indeterminate flag.

C#
public override int GetHashCode()
Returns:

int

A hash code for the current object.

Overrides: object.GetHashCode()

Properties

Gets whether the property has different values across the range (true if mixed, false if uniform).

C#
public bool IsIndeterminate { get; }
Property Value:

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; }
Property Value:

The value.