Class Index

Classes


Class $.wijmo.wijspread.ComparisonOperator

Class Summary
Constructor Attributes Constructor Name and Description
 
Specifies the comparison operator.
Field Summary
Field Attributes Field Name and Description
 
Determines whether a cell value is between the two parameter values.
 
Determines whether a cell value is equal to the parameter value.
 
Determines whether a cell value is greater than the parameter value.
 
Determines whether a cell value is greater than or equal to the parameter value.
 
Determines whether a cell value is less than the parameter value.
 
Determines whether a cell value is less than or equal to the parameter value.
 
Determines whether a cell value is not between the two parameter values.
 
Determines whether a cell value is not equal to the parameter value.
Class Detail
$.wijmo.wijspread.ComparisonOperator()
Specifies the comparison operator.
var style = new $.wijmo.wijspread.Style();
style.backColor = "red";

var rule = new $.wijmo.wijspread.CellValueRule($.wijmo.wijspread.ComparisonOperator.Between,2,100,style);
rule.ranges=[new $.wijmo.wijspread.Range(0,0,5,1)];

sheet.getConditionalFormats().addRule(rule);
sheet.setValue(0,0,1,3);
sheet.setValue(1,0,45,3);
Field Detail
Between
Determines whether a cell value is between the two parameter values.

EqualsTo
Determines whether a cell value is equal to the parameter value.

GreaterThan
Determines whether a cell value is greater than the parameter value.

GreaterThanOrEqualsTo
Determines whether a cell value is greater than or equal to the parameter value.

LessThan
Determines whether a cell value is less than the parameter value.

LessThanOrEqualsTo
Determines whether a cell value is less than or equal to the parameter value.

NotBetween
Determines whether a cell value is not between the two parameter values.

NotEqualsTo
Determines whether a cell value is not equal to the parameter value.

©2013. ComponentOne, a division of GrapeCity. All Rights Reserved.