Class GreaterThanOrEqualToRule
Conditional formatting rule that applies formatting when a cell value is greater than or equal to a specified argument value.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.ConditionalFormattings
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class GreaterThanOrEqualToRule : SingleArgumentComparisonRule, IPropertyValueProvider
Constructors
GreaterThanOrEqualToRule(String)
Initializes a new GreaterThanOrEqualToRule with the comparison argument.
Declaration
[Obsolete("This constructor is obsoleted, please use the one with 3 parameters instead.")]
public GreaterThanOrEqualToRule(string argument)
Parameters
|
System.String
argument
|
GreaterThanOrEqualToRule(String, DifferentialFormatting)
Initializes a new GreaterThanOrEqualToRule with the comparison argument and formatting to apply when the condition is met.
Declaration
public GreaterThanOrEqualToRule(string argument, DifferentialFormatting formatting)
Parameters
|
System.String
argument
|
|
DifferentialFormatting
formatting
|
Methods
ResolveComparables(IComparable, IComparable)
Evaluates whether the cell value is greater than or equal to the argument value and returns 1.0 if true, 0.0 otherwise.
Declaration
protected override double ResolveComparables(IComparable cellValue, IComparable value)
Parameters
|
System.IComparable
cellValue
The cell value |
|
System.IComparable
value
The argument value |
Returns
|
System.Double
|