SpreadJS Documentation
value1 Field
The value of the first object.
Syntax
var instance = new GcSpread.Sheets.CellValueRule(operator, value1, value2, style);
var value; // Type: object
value = instance.value1;
var value1 : object;
Example
This example creates multiple rules.
activeSheet.setArray(0,0,[1,2,3,4,5,6,7,8,9,10]);
var cell = new GcSpread.Sheets.CellValueRule();
cell.operator = 2;
cell.value1 = 5;
cell.ranges = [new GcSpread.Sheets.Range(0, 0, 10, 1)];
cell.style = new GcSpread.Sheets.Style();
cell.style.backColor = "red";
cell.style.foreColor = "black";
activeSheet.getConditionalFormats().addRule(cell);

var top = new GcSpread.Sheets.Top10Rule();
top.type = 0;
top.rank = 3;
top.stopIfTrue(true);
top.ranges = [new GcSpread.Sheets.Range(0, 0, 10, 1)];
top.style = new GcSpread.Sheets.Style();
top.style.foreColor = "red";
activeSheet.getConditionalFormats().addRule(top);
See Also

Reference

CellValueRule class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.