SpreadJS Documentation
formula Field
The formula that specifies a range that contains data items.
Syntax
var instance = new GcSpread.Sheets.AreaCondition(expected, formula);
var value; // Type: string
value = instance.formula;
var formula : string;
Example
This example creates an area condition.
var nCondition = new GcSpread.Sheets.AreaCondition();
nCondition.expected = 4;
nCondition.formula = "$C$1";
nCondition.ignoreBlank = true;
var validator = new GcSpread.Sheets.DefaultDataValidator(nCondition);
activeSheet.getCell(1, 2, GcSpread.Sheets.SheetArea.viewport).dataValidator(validator);
spread.highlightInvalidData(true);
activeSheet.setValue(0, 2, 3);
activeSheet.setValue(1, 2, 5);
See Also

Reference

AreaCondition type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.