Spread.Sheets Documentation
formula Method
The condition formula.
Gets or sets the condition formula.
Syntax
var instance = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule(ruleType, ranges, style, operator, value1, value2, text, formula, type, rank);
var returnValue; // Type: any
returnValue = instance.formula(value);
function formula( 
   value : string
) : any;

Parameters

value
The condition formula.

Return Value

If no value is set, returns the condition formula; otherwise, returns the number condition rule.
Example
This example uses the formula method.
var style = new GC.Spread.Sheets.Style();
style.backColor = "red";
var rule = new GC.Spread.Sheets.ConditionalFormatting.NormalConditionRule();
rule.ruleType(GC.Spread.Sheets.ConditionalFormatting.RuleType.FormulaRule);
rule.formula("=A1=B1+C1");
rule.ranges([new GC.Spread.Sheets.Range(0, 0, 2, 1)]);
rule.style(style);
activeSheet.conditionalFormats.addRule(rule);
activeSheet.setValue(0, 0, 2,3);
activeSheet.setValue(0, 1, 1,3);
activeSheet.setValue(0, 2,1,3);
activeSheet.setValue(1, 0, 1,3); 
See Also

Reference

NormalConditionRule class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.