ClassEndsWithRule
Conditional formatting rule that applies formatting when a cell's text value ends with a specified text string.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model.ConditionalFormattings
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class EndsWithRule : SingleArgumentConditionalFormattingRule
Inheritance: objectConditionalFormattingRuleConditionalFormattingDxfRuleSingleArgumentConditionalFormattingRuleEndsWithRule
Inherited Members
Constructors
EndsWithRule(string)
Initializes a new EndsWithRule with the text suffix to match.
Declaration
[Obsolete("This constructor is obsoleted, please use the one with formatting parameter instead.")]
public EndsWithRule(string argument)
Parameters
argument
EndsWithRule(string, DifferentialFormatting)
Initializes a new EndsWithRule with the text suffix to match and formatting to apply when the condition is met.
Declaration
public EndsWithRule(string argument, DifferentialFormatting formatting)
Parameters
argument
formatting
Methods
Resolve(ICellValue)
Evaluates whether the cell's text value ends with the specified suffix and returns 1.0 if true, 0.0 otherwise.
Declaration
protected override double Resolve(ICellValue value)
Parameters
value
The cell value
Returns
Overrides