[]
Sheets.ConditionalFormatting.ComparisonOperators
Specifies the comparison operator.
example
spread.options.highlightInvalidData = true;
var dv = GC.Spread.Sheets.DataValidation.createDateValidator(GC.Spread.Sheets.ConditionalFormatting.ComparisonOperators.between, new Date(2012, 11, 31), new Date(2013, 11, 31));
dv.showInputMessage(true);
dv.inputMessage("Enter a date between 12/31/2012 and 12/31/2013.");
dv.inputTitle("Tip");
activeSheet.getCell(1, -1).validator(dv);
• between = 6
Determines whether a cell value is between the two parameter values.
• equalsTo = 0
Determines whether a cell value is equal to the parameter value.
• greaterThan = 2
Determines whether a cell value is greater than the parameter value.
• greaterThanOrEqualsTo = 3
Determines whether a cell value is greater than or equal to the parameter value.
• lessThan = 4
Determines whether a cell value is less than the parameter value.
• lessThanOrEqualsTo = 5
Determines whether a cell value is less than or equal to the parameter value.
• notBetween = 7
Determines whether a cell value is not between the two parameter values.
• notEqualsTo = 1
Determines whether a cell value is not equal to the parameter value.